/* Base Styles */
:root {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  line-height: 1.5;
  font-weight: 400;

  --accent-color: #c9654c;
  --accent-color-dark: #a94f38;
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-primary);
}

p {
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color-dark);
}

button {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-brand a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(249, 242, 238, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 80px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
  border: 1px solid #b3d9ff;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-benefits li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  color: #2c3e50;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

/* Form Section */
.form-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.form-section-container {
  max-width: 700px;
  margin: 0 auto;
}

.opt-in-form {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 25px;
  color: #2c3e50;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-error {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-success {
  background: #efe;
  color: #383;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.consent-checkbox {
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.consent-checkbox label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  cursor: pointer;
}

.consent-checkbox label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cta-button {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover:not(:disabled) {
  background: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Qualification Points Section */
.qualification-points {
  padding: 80px 20px;
  background: linear-gradient(to bottom, white 0%, #faf8f6 100%);
  position: relative;
}

.qualification-points::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #5a6c7d;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.qualification-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.qualification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.qualification-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201, 101, 76, 0.1) 0%, rgba(201, 101, 76, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 16px;
  transition: all 0.3s ease;
}

.qualification-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qualification-card:hover .qualification-icon {
  background: linear-gradient(135deg, rgba(201, 101, 76, 0.15) 0%, rgba(201, 101, 76, 0.08) 100%);
  transform: scale(1.05);
}

.qualification-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #2c3e50;
  font-weight: 600;
}

.qualification-description {
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 1rem;
}

/* Booking Section */
.booking-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #faf8f6 0%, #f0ebe5 100%);
  position: relative;
}

.booking-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-content {
  padding-right: 10px;
}

.booking-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.2;
}

.booking-subtitle {
  font-size: 1.2rem;
  color: #5a6c7d;
  margin-bottom: 40px;
  line-height: 1.6;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 101, 76, 0.2);
}

.benefit-text {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.booking-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
}

.cta-card-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.cta-card-text {
  font-size: 1.05rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button-primary {
  width: 100%;
  padding: 18px 32px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(201, 101, 76, 0.2);
}

.cta-button-primary:hover {
  background: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 101, 76, 0.3);
}

.cta-reassurance {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #7a8c9d;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 50px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
  transition: background-color 0.3s ease;
  padding: 0 20px;
  margin-left: -20px;
  margin-right: -20px;
  border-radius: 8px;
}

.faq-item:hover {
  background-color: rgba(201, 101, 76, 0.02);
}

.faq-question {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: 400;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 0 25px 0;
  color: #5a6c7d;
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-cta {
  margin-top: 60px;
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, rgba(201, 101, 76, 0.05) 0%, rgba(249, 242, 238, 0.4) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201, 101, 76, 0.1);
}

.faq-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
}

.faq-cta p {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 30px;
}

/* Footer Styles */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.footer-tagline {
  color: #bdc3c7;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
  line-height: 1.8;
}

.footer-nav a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-nav .separator {
  color: #7f8c8d;
  font-size: 0.8rem;
}

.footer-contact {
  margin: 25px 0;
}

.footer-contact p {
  color: #bdc3c7;
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-address {
  color: #95a5a6;
  font-size: 0.85rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #34495e;
  text-align: center;
}

.footer-disclaimer {
  color: #95a5a6;
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-copyright {
  color: #95a5a6;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-top: 0;
  }

  .qualification-grid {
    grid-template-columns: 1fr;
  }

  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-content {
    padding-right: 0;
  }

  .opt-in-form {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .header-brand a {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .opt-in-form {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-image {
    min-height: 350px;
  }

  .qualification-points {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .qualification-card {
    padding: 25px;
  }

  .booking-form-section {
    padding: 60px 15px;
  }

  .booking-title {
    font-size: 2rem;
  }

  .booking-subtitle {
    font-size: 1.1rem;
  }

  .cta-card {
    padding: 30px 20px;
  }

  .cta-card-title {
    font-size: 1.5rem;
  }

  .faq-section {
    padding: 60px 15px;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 20px 0;
  }

  .faq-answer-content {
    font-size: 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  .footer-nav .separator {
    display: none;
  }

  .footer {
    padding: 50px 15px 25px;
  }
}

/* Legal Pages */
.legal-page {
  min-height: calc(100vh - 300px);
  padding: 60px 20px;
  background-color: var(--bg-light);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--accent-color-dark);
}

.legal-content {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.legal-content h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.legal-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul, .legal-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 40px 15px;
  }

  .legal-content {
    padding: 30px 20px;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}
