/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0f172a; /* Dark navy blue */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-top: 12px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: -60px;
}

.logo {
  height: 180px;
  width: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-right: -60px;
}

.nav-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.how-it-works-btn {
  background-color: #ffffff;
  color: #0f172a;
}

.how-it-works-btn:hover {
  background-color: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.join-waitlist-btn {
  background-color: #0f172a;
  color: #ffffff;
}

.join-waitlist-btn:hover {
  background-color: #0f172a;
}

/* Header Instagram Link Styles */
.header-instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 12px;
}

.header-instagram-link:hover {
  color: #e2e8f0;
  transform: translateY(-2px);
}

/* Logo wrapper for mobile Instagram positioning */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Desktop Instagram button - show only on larger screens */
.desktop-instagram {
  display: flex;
}

/* Mobile Instagram button - hide on larger screens by default */
.mobile-instagram {
  display: none;
  margin-left: 0;
}

/* Main Content */
.main-content {
  margin-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: calc(100vh - 80px); /* Full viewport height minus header */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
  color: #1e3a8a;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background-color: #f1f5f9;
  color: #1e3a8a;
}

/* Form Styles */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
}

.form-group input {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.submit-btn {
  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 24px;
}

.success-message h3 {
  color: #16a34a;
  margin-bottom: 12px;
  font-size: 20px;
}

.success-message p {
  color: #374151;
  font-size: 16px;
}

/* How It Works Styles */
.how-it-works-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  background-color: #1e3a8a;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h3 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* What Even is Versa Section */
.what-is-versa-section {
  background-color: #faf9f6; /* Light cream color */
  padding: 80px 0;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a; /* Navy blue */
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.2;
}

.subsection {
  margin-bottom: 80px;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

.subsection-content.reverse {
  flex-direction: row-reverse;
}

.text-left,
.text-right {
  flex: 1;
}

.subsection-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Mobile image positioning */
.mobile-image-first {
  display: none;
}

.desktop-image {
  display: block;
}

.subsection-title {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a; /* Navy blue */
  margin-bottom: 20px;
  line-height: 1.3;
}

.subsection-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  text-align: left;
}

/* How It Works Screen */
.how-it-works-screen {
  background-color: #faf9f6; /* Same as main landing page */
  min-height: 100vh;
  padding: 0; /* Remove padding since banner will handle spacing */
}

/* How It Works Banner */
.how-it-works-banner {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 40px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 9%;
}

.header-back-btn {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 20px;
}

.header-back-btn:hover {
  background-color: #ffffff;
  color: #0f172a;
  transform: translateY(-1px);
}

.back-btn {
  background: none;
  border: 2px solid #0f172a;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #0f172a;
  color: white;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border: 2px solid #0f172a;
  border-radius: 12px;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  background: white;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 2px solid #0f172a;
}

.tab-btn:last-child {
  border-right: none;
}

.tab-btn.active {
  background-color: #0f172a;
  color: white;
}

.tab-btn:hover:not(.active) {
  background-color: #f8fafc;
}

/* Step Sections */
.step-section {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 20px;
}

.step-section:last-child {
  margin-bottom: 0;
}

.step-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.step-image {
  width: 200px;
  height: 300px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background-color: white;
  padding: 10px;
}

.step-image:hover {
  transform: translateY(-5px);
}

.step-content {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.step-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-text {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5568;
  text-align: center;
}

.arrow-down {
  font-size: 48px;
  color: #0f172a;
  font-weight: bold;
  margin: 20px 0;
}

.clickable-arrow {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  user-select: none;
}

.clickable-arrow:hover {
  background-color: rgba(15, 23, 42, 0.1);
  transform: scale(1.1);
  color: #0f172a;
}

.clickable-arrow:active {
  transform: scale(0.95);
}

/* FAQ Placeholder */
/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-section-title {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  border-bottom: 3px solid #0f172a;
  padding-bottom: 15px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.faq-arrow {
  font-size: 16px;
  color: #64748b;
  transition: transform 0.3s ease, color 0.3s ease;
  font-weight: bold;
}

.faq-question:hover .faq-arrow {
  color: #0f172a;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #0f172a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  padding-top: 15px;
}

.faq-answer strong {
  color: #0f172a;
  font-weight: 600;
}

/* Waitlist Page Styles */
.waitlist-banner-section {
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-banner {
  width: 100%;
  height: 100%;
  position: relative;
}

.waitlist-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.waitlist-form-section {
  background-color: #faf9f6;
  padding: 80px 0;
  min-height: calc(100vh - 580px);
  display: flex;
  align-items: center;
}

.waitlist-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.waitlist-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.waitlist-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.waitlist-page-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.waitlist-page-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waitlist-page-form .form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 16px;
}

.waitlist-page-form .form-group input {
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}

.waitlist-page-form .form-group input:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.waitlist-page-form .submit-btn {
  background-color: #0f172a;
  color: white;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
}

.waitlist-page-form .submit-btn:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.waitlist-page-form .submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* College Search Styles */
.college-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  display: none;
}

.college-dropdown.show {
  display: block;
}

.college-option {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.college-option:hover,
.college-option.highlighted {
  background-color: #f8fafc;
}

.college-option:last-child {
  border-bottom: none;
}

.form-group {
  position: relative;
}

.email-hint {
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
  display: block;
}

/* Checkbox Styles */
.checkbox-group {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  gap: 12px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label:hover .checkmark {
  border-color: #0f172a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #0f172a;
  border-color: #0f172a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

/* Back home button styling */
.back-home-btn {
  background-color: #0f172a;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.back-home-btn:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

/* Footer Styles */
.footer {
  background-color: #0f172a;
  color: white;
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: relative;
}

.footer-logo-img {
  height: 180px;
  width: auto;
}

.footer-text {
  position: absolute;
  left: 50%;
  transform: translateX(-30%);
  text-align: center;
}

.footer-text p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #e2e8f0;
  transform: translateX(-10px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.footer-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-separator {
  color: #64748b;
  font-size: 14px;
}

.footer-social {
  display: flex;
  align-items: center;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
}

.instagram-link svg path {
  fill: #e2e8f0;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background-color: #0f172a;
  color: white;
  padding: 20px 30px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.close {
  color: #e2e8f0;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 30px;
  color: #1e293b;
  line-height: 1.6;
}

.modal-body h3 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 15px 0;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin: 15px 0;
  font-size: 16px;
}

.modal-body ul {
  margin: 15px 0;
  padding-left: 20px;
}

.modal-body li {
  margin: 8px 0;
  font-size: 16px;
}

.modal-body strong {
  color: #0f172a;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 16px;
    height: 70px;
    padding-top: 10px;
  }

  .logo {
    height: 100px;
  }

  .logo-container {
    margin-left: -30px;
  }

  .nav-buttons {
    gap: 12px;
    margin-right: -30px;
  }

  .nav-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }

  .main-content {
    margin-top: 70px;
  }

  .hero-section {
    height: calc(100vh - 70px);
  }

  .modal-content {
    padding: 24px;
    margin: 16px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  /* What Even is Versa Section - Tablet */
  .what-is-versa-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .subsection {
    margin-bottom: 60px;
  }

  .subsection-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* Show mobile images and hide desktop images on mobile */
  .mobile-image-first {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }

  .desktop-image {
    display: none;
  }

  .subsection-content.reverse {
    flex-direction: column-reverse;
  }

  .subsection-title {
    font-size: 28px;
    text-align: center;
  }

  .subsection-text {
    font-size: 16px;
    text-align: center;
  }

  .subsection-image {
    max-width: 300px;
  }

  /* How It Works Screen - Tablet */
  .how-it-works-screen {
    padding: 80px 0 40px 0;
  }

  .tab-navigation {
    max-width: 500px;
    margin-bottom: 20px;
  }

  .tab-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .step-section {
    margin-bottom: 60px;
    padding: 30px 15px;
  }

  .step-images {
    gap: 15px;
  }

  .step-image {
    width: 150px;
    height: 225px;
  }

  .step-title {
    font-size: 28px;
  }

  .step-text {
    font-size: 16px;
  }

  .arrow-down {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .nav-buttons {
    flex-direction: row;
    gap: 8px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 12px;
    min-width: 100px;
  }

  .header-container {
    height: auto;
    padding: 10px 20px;
    padding-top: 8px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    height: 110px;
    max-width: none;
    width: auto;
    padding: 0;
  }

  .logo-container {
    margin-left: -10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .nav-buttons {
    margin-right: -10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .main-content {
    margin-top: 110px;
  }

  .hero-section {
    height: calc(100vh - 110px);
    padding: 0 15px;
  }

  .hero-image {
    object-fit: contain;
    max-height: 70vh;
    width: auto;
    margin: 0 auto;
  }

  /* What Even is Versa Section - Mobile */
  .what-is-versa-section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .subsection {
    margin-bottom: 40px;
  }

  .subsection-content {
    gap: 24px;
    flex-direction: column;
  }

  /* Show mobile images and hide desktop images on mobile */
  .mobile-image-first {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }

  .desktop-image {
    display: none;
  }

  .subsection-content.reverse {
    flex-direction: column-reverse;
  }

  .subsection-title {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
  }

  .subsection-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .subsection-image {
    max-width: 250px;
  }

  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-text {
    position: static;
    text-align: center;
  }

  .footer-text p {
    transform: translateX(65px);
  }

  .footer-links {
    transform: translateX(65px);
  }

  .footer-logo-img {
    height: 150px;
  }

  .footer-text p {
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
  }

  .footer-separator {
    display: none;
  }

  /* Modal Mobile */
  .modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body h3 {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }

  .modal-body p {
    font-size: 14px;
    margin: 12px 0;
  }

  .modal-body li {
    font-size: 14px;
    margin: 6px 0;
  }

  /* How It Works Screen - Mobile */
  .how-it-works-screen {
    padding: 120px 0 40px 0;
  }

  .back-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 30px;
  }

  .tab-navigation {
    max-width: 350px;
    margin-bottom: 15px;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 12px;
  }

  .step-section {
    margin-bottom: 40px;
    padding: 20px 10px;
  }

  .step-images {
    gap: 15px;
    flex-direction: row;
    justify-content: center;
  }

  .step-image {
    width: 120px;
    height: 180px;
  }

  .step-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .step-text {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .arrow-down {
    font-size: 30px;
    margin: 15px 0;
  }

  .faq-container {
    padding: 0 15px;
  }

  .faq-section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .how-it-works-banner {
    height: 350px;
    margin-bottom: 30px;
  }

  /* Waitlist Page Mobile */
  .waitlist-banner-section {
    height: 250px;
  }

  .waitlist-form-section {
    padding: 40px 0;
    min-height: calc(100vh - 350px);
  }

  .waitlist-form-container {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .waitlist-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .waitlist-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .waitlist-page-form {
    gap: 20px;
  }

  .waitlist-page-form .form-group input {
    padding: 14px 16px;
    font-size: 16px;
  }

  .waitlist-page-form .submit-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* Responsive Design for Header Instagram Button */
@media (max-width: 768px) {
  /* Show mobile Instagram button and hide desktop version */
  .mobile-instagram {
    display: flex;
    margin-top: -30px;
    margin-bottom: -8px;
  }

  .desktop-instagram {
    display: none;
  }

  /* Adjust logo wrapper for mobile Instagram button - reduce gap */
  .logo-wrapper {
    gap: 2px;
  }

  /* Move logo up on mobile without affecting Instagram button */
  .logo {
    margin-top: -30px;
  }

  /* Keep header container at normal height since Instagram button is now inline */
  .header-container {
    height: 80px;
    align-items: center;
    padding-top: 12px;
  }

  /* Keep main content margin normal */
  .main-content {
    margin-top: 80px;
  }

  /* Make nav buttons smaller on mobile */
  .nav-btn {
    padding: 10px 16px;
    font-size: 12px;
    min-width: 120px;
  }
}

@media (min-width: 769px) {
  /* Ensure desktop Instagram button is visible */
  .desktop-instagram {
    display: flex !important;
  }

  /* Ensure mobile Instagram button is hidden */
  .mobile-instagram {
    display: none !important;
  }
}
