/* ============================================
   CELESTIAL ARMOR - MINIMALIST DESIGN SYSTEM
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER STYLES */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2C3E50;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #8B4513;
  border-bottom-color: #D4AF37;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B4513;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  z-index: 300;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 32px 32px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #8B4513;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  border-bottom: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B4513;
  padding-left: 8px;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2C3E50;
}

.hero .subheadline {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-internal {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #5A6C7D;
}

.hero-thankyou {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #8B4513;
  color: #FFFFFF;
  border-color: #8B4513;
}

.btn-primary:hover {
  background-color: #723A0F;
  border-color: #723A0F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* TRUST BADGE */
.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #5A6C7D;
  font-weight: 500;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #F8F9FA;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > .container > p {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-item {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.benefit-item p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* SERVICES GRID */
.services-overview {
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 16px;
}

.services-overview > .container > p {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.service-card p {
  font-size: 18px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 0;
}

/* FEATURED SERVICE */
.featured-service {
  background-color: #F8F9FA;
  text-align: center;
}

.featured-service h2 {
  margin-bottom: 16px;
}

.featured-service > .container > p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.featured-service ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.featured-service li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.featured-service li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 18px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 24px;
}

.price-display {
  font-size: 36px;
  font-weight: 700;
  color: #8B4513;
  margin: 24px 0;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F8F9FA;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-size: 14px;
  color: #5A6C7D;
  font-weight: 600;
  font-style: italic;
}

.testimonials-club .testimonial-card,
.testimonials-library .testimonial-card {
  background-color: #FFFFFF;
  color: #2C3E50;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background-color: #F8F9FA;
  text-align: center;
}

.newsletter-signup h2 {
  margin-bottom: 16px;
}

.newsletter-signup > .container > p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1 1 250px;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #8B4513;
}

.newsletter-form button {
  flex-shrink: 0;
}

/* CTA SECTIONS */
.cta-final,
.cta-section,
.cta-final-club {
  background: linear-gradient(135deg, #2C3E50 0%, #3A4F63 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
}

.cta-final h2,
.cta-section h2,
.cta-final-club h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p,
.cta-final-club p {
  color: #E8E8E8;
  font-size: 18px;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 48px 20px 24px;
  margin-top: 60px;
}

footer h3,
footer h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #E8E8E8;
}

.footer-section a {
  display: block;
  color: #E8E8E8;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #D4AF37;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #95A5A6;
  border-top: 1px solid #3A4F63;
  padding-top: 24px;
  margin-top: 32px;
}

/* ABOUT PAGE STYLES */
.about-story {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-story h2 {
  margin-bottom: 24px;
}

.about-story .highlight {
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
  margin-top: 32px;
}

.mission-vision {
  background-color: #F8F9FA;
}

.mission-vision .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission,
.vision,
.values {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.values ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 500px;
  margin: 24px auto 0;
}

.values li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.values li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 24px;
}

/* TEAM GRID */
.team {
  text-align: center;
}

.team h2 {
  margin-bottom: 16px;
}

.team > .container > p {
  font-size: 18px;
  color: #5A6C7D;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-member .role {
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  color: #5A6C7D;
}

/* STATS SECTION */
.stats {
  background-color: #F8F9FA;
  text-align: center;
}

.stats h2 {
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-item .number {
  font-size: 48px;
  font-weight: 700;
  color: #8B4513;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* SERVICE DETAILED PAGES */
.services-intro,
.club-introduction,
.library-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-intro h2,
.club-introduction h2,
.library-intro h2 {
  margin-bottom: 24px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.highlights p {
  flex: 1 1 200px;
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 0;
}

.service-detailed {
  background-color: #F8F9FA;
  text-align: center;
}

.service-detailed h2 {
  margin-bottom: 12px;
}

.service-detailed .tagline {
  font-size: 18px;
  color: #5A6C7D;
  font-style: italic;
  margin-bottom: 24px;
}

.service-detailed > .container > p:not(.tagline):not(.price) {
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-detailed ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.service-detailed li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.service-detailed li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
  font-size: 18px;
}

/* BENEFITS DETAILED */
.benefits-detailed {
  background-color: #F8F9FA;
}

.benefits-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-detailed .benefit-item {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.benefits-detailed .benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.benefits-detailed .benefit-item p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* PRICING SECTIONS */
.pricing-club,
.pricing-library {
  background-color: #F8F9FA;
  text-align: center;
}

.pricing-club h2,
.pricing-library h2 {
  margin-bottom: 48px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.pricing-plan {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-plan:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-plan h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-plan .price {
  font-size: 36px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
}

.pricing-plan p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 12px;
}

.pricing-plan ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-plan li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
}

.pricing-plan li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: bold;
}

.guarantee {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FEATURES LIBRARY */
.features-library {
  background-color: #F8F9FA;
}

.features-library h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-library .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2C3E50;
}

.feature-item p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* BLOG STYLES */
.blog-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-categories {
  background-color: #F8F9FA;
}

.blog-categories h2 {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.category-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.category-item p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 48px;
}

.post-card {
  background-color: #FFFFFF;
  padding: 32px;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  position: relative;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.post-card p {
  font-size: 16px;
  color: #5A6C7D;
}

.post-card .meta {
  font-size: 14px;
  color: #95A5A6;
  font-style: italic;
  margin-bottom: 0;
}

.newsletter-blog {
  background-color: #F8F9FA;
  text-align: center;
}

/* CONTACT STYLES */
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background-color: #F8F9FA;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-item {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8B4513;
}

.contact-item p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

/* CONTACT FORM */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form > .container > p {
  text-align: center;
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 32px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea,
.form-field select {
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #8B4513;
}

.form-field label input[type="checkbox"] {
  margin-right: 8px;
}

.form-field a {
  font-size: 14px;
  color: #8B4513;
  text-decoration: underline;
}

.form-container button {
  align-self: flex-start;
  margin-top: 8px;
}

.note {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-top: 16px;
}

.privacy-note {
  font-size: 14px;
  color: #5A6C7D;
  margin-top: 16px;
  text-align: center;
}

/* LEGAL CONTENT PAGES */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content .container {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.last-update {
  font-size: 14px;
  color: #5A6C7D;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C3E50;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.legal-item {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

.legal-item h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 8px;
}

.legal-item p {
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-type,
.method {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-left: 4px solid #D4AF37;
  border-radius: 4px;
}

.cookie-type h3,
.method h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 8px;
}

.cookie-type p,
.method p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thankyou-message {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thankyou-message h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.thankyou-message ul {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.thankyou-message li {
  padding: 12px 0;
  font-size: 16px;
}

.next-steps {
  background-color: #F8F9FA;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.option-card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.option-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.option-card p {
  font-size: 14px;
  color: #5A6C7D;
  flex-grow: 1;
}

.contact-alternative {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-alternative h2 {
  margin-bottom: 24px;
}

.contact-alternative .contact-details {
  text-align: left;
  max-width: 500px;
  margin: 24px auto 0;
}

.contact-alternative .contact-details p {
  margin-bottom: 12px;
  font-size: 14px;
}

.return-home {
  text-align: center;
}

.return-home .cta-buttons {
  margin-top: 0;
}

.trial-cta {
  background-color: #F8F9FA;
  text-align: center;
}

.trial-cta h2 {
  margin-bottom: 16px;
}

.trial-cta > .container > p {
  font-size: 16px;
  color: #5A6C7D;
  margin-bottom: 32px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-text p {
  margin-bottom: 0;
  color: #E8E8E8;
}

.cookie-consent-text a {
  color: #D4AF37;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: #8B4513;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #723A0F;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

.cookie-btn-settings:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #8B4513;
}

.cookie-modal h2 {
  margin-bottom: 16px;
  color: #2C3E50;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: #2C3E50;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCC;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #8B4513;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #5A6C7D;
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero .subheadline {
    font-size: 16px;
  }
  
  .hero-internal h1 {
    font-size: 28px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Adjust sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero sections */
  .hero {
    padding: 60px 16px;
    margin-bottom: 40px;
  }
  
  .hero-internal {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  /* Benefits grid */
  .benefits {
    gap: 16px;
  }
  
  .benefit-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Services grid */
  .services-grid {
    gap: 16px;
  }
  
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Team grid */
  .team-grid {
    gap: 16px;
  }
  
  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    gap: 16px;
  }
  
  .stat-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Categories grid */
  .categories-grid {
    gap: 16px;
  }
  
  .category-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Contact details */
  .contact-details {
    gap: 20px;
  }
  
  .contact-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .cookie-consent-text {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
  }
  
  /* Pricing grid */
  .pricing-grid {
    gap: 20px;
  }
  
  .pricing-plan {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Options grid */
  .options-grid {
    gap: 20px;
  }
  
  .option-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Legal content */
  .legal-content .container {
    padding: 24px;
  }
  
  /* Price displays */
  .price {
    font-size: 28px;
  }
  
  .price-display {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 24px 12px;
  }
  
  .cookie-consent-banner {
    padding: 16px;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .mobile-menu {
    width: 90%;
  }
}