/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font & colors 
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.5;
  padding: 10px;
}*/

/* Background styling */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5; /* Allow growth if content is taller */
}
/* Logo bar */
.logo-bar {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Align vertically */
  flex-wrap: wrap;         /* Wrap if too small screen */
}

.logo-section {
  /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/
  margin-top: 2px;
  border-radius: 2px;
  text-align: center;
}

.logo {
  width: 260px;
  height:170px;
  object-fit: cover;
  margin-bottom: 0px;
}

.video-section {
  margin-top:0px;
  border-radius:2px;
  text-align: center;
}

.video-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.demo-video {
  height: 150px;
  border-radius: 10px;
  outline: none;
  flex-wrap: wrap;
  object-fit: cover;
}

/* Form card */
.form-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.form-card h1 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

input:focus {
  border-color: #0057b8;
  outline: none;
  box-shadow: 0 0 5px rgba(0,87,184,0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-primary {
  background: #0057b8;
  color: #fff;
}

.btn-secondary {
  background: #333;
  color: #fff;
}

/* Breakdown section */
.breakdown {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #444;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #6f6c6c;
  padding: 20px 0;
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .logo-bar {
    flex-direction: row;
    justify-content: space-between;
  }
  .logo-section {
    width: 48%;
  }
  .video-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}
