/* ============================================
   GLOSS WAGON - MINIMALIST DESIGN SYSTEM
   Modern, Clean, Professional Retirement Planning
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
  min-height: 100vh;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #2C5F7C;
}

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

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

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

p {
  margin-bottom: 16px;
  color: #555555;
}

a {
  color: #2C5F7C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #8B4513;
}

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

li {
  margin-bottom: 8px;
  color: #555555;
}

strong {
  color: #333333;
  font-weight: 600;
}

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

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

.section-intro {
  font-size: 18px;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.tagline {
  font-size: 12px;
  color: #8B4513;
  font-style: italic;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #2C5F7C;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #F5F5F5;
  color: #8B4513;
}

.header-cta {
  display: flex;
  align-items: center;
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C5F7C;
  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: 16px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C5F7C;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

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

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

.btn-primary {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #2C5F7C;
  border-color: #2C5F7C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.2);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

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

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.subheadline {
  font-size: 20px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #8B4513;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

/* PAGE HERO */
.page-hero {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.key-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.key-benefits li {
  font-size: 16px;
  color: #2C5F7C;
  padding-left: 28px;
  position: relative;
}

.key-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: bold;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  border-left: 4px solid #2C5F7C;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  color: #555555;
  line-height: 1.7;
}

/* SERVICES */
.services-overview h2, .services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid, .service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

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

.service-card p {
  flex-grow: 1;
  color: #555555;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #8B4513;
  margin: 8px 0;
}

.service-detail {
  flex-direction: column;
  padding: 40px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 32px;
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 16px 0;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
}

/* PROCESS STEPS */
.process {
  background-color: #F8F9FA;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: #555555;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #FFFFFF;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  border-left: 4px solid #8B4513;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  font-style: italic;
}

.testimonial-card .customer-name {
  font-size: 14px;
  font-weight: 600;
  color: #2C5F7C;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2C5F7C 0%, #8B4513 100%);
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-content h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-content p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #2C5F7C;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* STATISTICS */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.stat {
  text-align: center;
  min-width: 180px;
}

.stat-number, .stat-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2C5F7C;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #555555;
}

/* PACKAGES */
.packages {
  background-color: #F8F9FA;
}

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

.packages > .container > p {
  text-align: center;
  margin-bottom: 48px;
  color: #555555;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.package-card.popular {
  border-color: #2C5F7C;
  border-width: 3px;
}

.package-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #8B4513;
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.package-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.package-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F7C;
  font-weight: bold;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F7C;
  margin: 16px 0;
}

.regular-price {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

/* PRICING TIERS */
.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.tier {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}

.tier.popular {
  border-color: #2C5F7C;
  border-width: 3px;
}

.tier-price {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F7C;
  margin: 16px 0;
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

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

/* CATEGORIES */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

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

.article-count {
  display: block;
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  margin-top: 16px;
}

/* ARTICLES */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #E8D5B7;
  color: #8B4513;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.read-time {
  display: block;
  font-size: 12px;
  color: #999999;
  margin-top: 12px;
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-primary {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F7C;
  margin-bottom: 8px;
}

.contact-secondary {
  font-size: 14px;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 12px;
}

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

.form-note {
  padding: 32px;
  background-color: #F8F9FA;
  border-left: 4px solid #8B4513;
  border-radius: 4px;
}

.form-note p {
  margin-bottom: 12px;
  color: #555555;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.detail-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
}

.detail-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.team-contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 20px;
}

.team-contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.team-contact-card .note {
  font-size: 14px;
  color: #8B4513;
  font-style: italic;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: #999999;
}

.intro-text {
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 16px auto 0;
}

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

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

.text-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  padding-top: 20px;
}

.text-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 24px;
}

.certification-list {
  list-style: none;
  padding: 0;
}

.certification-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.certification-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F7C;
  font-weight: bold;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefit-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #555555;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: bold;
}

/* ERROR PAGE */
.error-hero {
  padding: 80px 20px;
  text-align: center;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E8D5B7;
  line-height: 1;
  margin-bottom: 24px;
}

.error-message {
  font-size: 18px;
  color: #555555;
  margin-bottom: 32px;
}

.link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
}

.link-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #F8F9FA;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.confirmation-message {
  font-size: 18px;
  color: #555555;
  margin-bottom: 32px;
}

.next-steps {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.next-steps li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.next-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #8B4513;
  font-weight: bold;
  font-size: 20px;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.timeline-steps .step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: left;
}

.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-info-box {
  background-color: #F8F9FA;
  padding: 40px 20px;
  text-align: center;
}

.contact-info-box h2 {
  margin-bottom: 16px;
}

.contact-info-box p {
  margin-bottom: 8px;
}

/* TOOLS */
.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.tool-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.tool-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* CONTENT SPLITS */
.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.problem, .solution {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.detail-category {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 20px;
}

.detail-category h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.benefit-summary {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.benefit-summary li {
  padding: 12px 20px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 14px;
}

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

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #E8E8E8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #E8E8E8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E8D5B7;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #E8E8E8;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 8px;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

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

.cookie-btn-reject {
  background-color: #FFFFFF;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

.cookie-btn-reject:hover {
  background-color: #F8F9FA;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #555555;
  border: none;
  text-decoration: underline;
  padding: 10px;
}

.cookie-btn-settings:hover {
  color: #2C5F7C;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

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

.cookie-modal-close:hover {
  color: #2C5F7C;
}

.cookie-modal h2 {
  margin-bottom: 16px;
}

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

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

.cookie-category h3 {
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #E8E8E8;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2C5F7C;
}

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

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards and Grids */
  .value-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .package-grid,
  .pricing-tiers,
  .team-grid,
  .category-grid,
  .article-grid,
  .contact-grid,
  .link-cards,
  .resource-grid,
  .tool-grid,
  .details-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .step,
  .testimonial-card,
  .package-card,
  .tier,
  .team-member,
  .category-card,
  .article-card,
  .contact-card,
  .link-card,
  .resource-card,
  .tool-card,
  .detail-category {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Statistics */
  .statistics {
    flex-direction: column;
  }
  
  /* Content Splits */
  .content-split {
    flex-direction: column;
  }
  
  .problem,
  .solution {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Timeline Steps */
  .timeline-steps {
    flex-direction: column;
  }
  
  .timeline-steps .step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Office Details */
  .office-details {
    flex-direction: column;
  }
  
  .detail-block {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Team Contact */
  .team-contact-grid {
    flex-direction: column;
  }
  
  .team-contact-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
  
  .package-price,
  .tier-price {
    font-size: 28px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
  
  header {
    position: static;
    box-shadow: none;
  }
}