/* ============================================
   KERATWIND PROTECT - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #F9F7F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY - ELEGANT CLASSIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Palatino', 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1B3A57;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

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

h4 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

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

a:hover {
  color: #E8B339;
}

strong {
  font-weight: 600;
  color: #1B3A57;
}

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

li {
  margin-bottom: 8px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #E8E5E0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(27, 58, 87, 0.08);
}

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

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

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

.main-nav a {
  font-family: 'Palatino', serif;
  font-size: 16px;
  color: #1B3A57;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #E8B339;
  border-bottom-color: #E8B339;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1B3A57;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(27, 58, 87, 0.3);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.mobile-nav a {
  font-family: 'Palatino', serif;
  font-size: 18px;
  color: #1B3A57;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8B339;
  border-left-color: #E8B339;
  background-color: #F9F7F4;
}

/* ============================================
   BUTTONS - ELEGANT CLASSIC STYLE
   ============================================ */

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

.btn-primary {
  background-color: #1B3A57;
  color: #FFFFFF;
  border-color: #1B3A57;
}

.btn-primary:hover {
  background-color: #2E5984;
  border-color: #2E5984;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 58, 87, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: #1B3A57;
  border-color: #1B3A57;
}

.btn-secondary:hover {
  background-color: #1B3A57;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 58, 87, 0.25);
}

.btn-link {
  color: #2E5984;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #2E5984;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #E8B339;
  border-bottom-color: #E8B339;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1B3A57 0%, #2E5984 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23FFFFFF" fill-opacity="0.03"/%3E%3C/svg%3E');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 52px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.trust-indicators span {
  font-size: 14px;
  color: #E8E5E0;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   PAGE HERO (Breadcrumbs)
   ============================================ */

.page-hero {
  background-color: #F0EDE8;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 2px solid #E8E5E0;
}

.page-hero.legal {
  background-color: #FFFFFF;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #6A6A6A;
}

.breadcrumbs a {
  color: #2E5984;
}

.breadcrumbs span {
  color: #1B3A57;
  font-weight: 600;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
}

.last-updated {
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

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

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: #F9F7F4;
  border-radius: 8px;
  border: 1px solid #E8E5E0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 58, 87, 0.12);
  border-color: #E8B339;
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1B3A57;
}

.feature-card p {
  font-size: 15px;
  color: #6A6A6A;
  line-height: 1.6;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */

.services-overview {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6A6A6A;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  border-color: #2E5984;
  box-shadow: 0 6px 20px rgba(27, 58, 87, 0.15);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 24px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.service-card p {
  color: #6A6A6A;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E8B339;
  margin-top: auto;
  margin-bottom: 12px;
}

.services-overview > .container > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background-color: #1B3A57;
  color: #FFFFFF;
  padding: 60px 20px;
}

.stats h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #E8B339;
  font-family: 'Palatino', serif;
  display: block;
}

.stat-label {
  font-size: 16px;
  color: #E8E5E0;
  display: block;
}

/* ============================================
   TESTIMONIALS - ELEGANT CLASSIC
   ============================================ */

.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E8B339;
  box-shadow: 0 4px 16px rgba(27, 58, 87, 0.08);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #1B3A57;
  margin-bottom: 4px;
}

.testimonial-card .position {
  font-size: 14px;
  color: #6A6A6A;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, #2E5984 0%, #1B3A57 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #E8E5E0;
  margin-bottom: 16px;
}

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

.benefits-list span {
  font-size: 14px;
  color: #E8E5E0;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1B3A57;
  color: #E8E5E0;
  padding: 60px 20px 20px;
  border-top: 4px solid #E8B339;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 2px solid #E8B339;
  padding-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  color: #C8C5C0;
  line-height: 1.6;
}

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

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

.footer-nav a:hover {
  color: #E8B339;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 179, 57, 0.3);
}

.footer-bottom p {
  font-size: 14px;
  color: #C8C5C0;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */

.services-detail {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.service-detail-card {
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail-card:hover {
  border-color: #2E5984;
  box-shadow: 0 6px 20px rgba(27, 58, 87, 0.15);
}

.service-detail-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-detail-card h3 {
  font-size: 26px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.service-detail-card p {
  color: #4A4A4A;
  line-height: 1.7;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.features-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4A4A4A;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B339;
  font-weight: 700;
  font-size: 18px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

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

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

.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-color: #1B3A57;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Palatino', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1B3A57;
}

.process-step p {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 12px;
}

.timeframe {
  font-size: 13px;
  color: #E8B339;
  font-weight: 600;
}

/* ============================================
   REFERENCES PAGE
   ============================================ */

.stats-highlight {
  background-color: #F0EDE8;
  padding: 40px 20px;
}

.testimonials-detailed {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial-detailed {
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E8B339;
  box-shadow: 0 4px 16px rgba(27, 58, 87, 0.08);
}

.testimonial-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E5E0;
}

.testimonial-header h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 4px;
}

.industry {
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
}

.testimonial-detailed .quote {
  font-size: 16px;
  font-style: italic;
  color: #2C2C2C;
  line-height: 1.7;
  margin: 16px 0;
}

.testimonial-detailed .author {
  font-weight: 600;
  color: #1B3A57;
  margin-bottom: 4px;
}

.testimonial-detailed .service {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 12px;
}

.results {
  background-color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 4px;
  border-left: 3px solid #2E5984;
  margin-top: 16px;
  font-size: 14px;
  color: #4A4A4A;
}

/* ============================================
   CASE STUDIES
   ============================================ */

.case-studies {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

.case-study {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  margin-bottom: 24px;
}

.case-study h3 {
  font-size: 24px;
  color: #1B3A57;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8B339;
}

.case-study p {
  margin-bottom: 12px;
  color: #4A4A4A;
}

/* ============================================
   INDUSTRY REFERENCES
   ============================================ */

.industry-references {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.industry-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.clients-count {
  font-size: 32px;
  font-weight: 700;
  color: #E8B339;
  font-family: 'Palatino', serif;
  margin-bottom: 12px;
}

/* ============================================
   PRICING PAGE
   ============================================ */

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

.trust-badges span {
  font-size: 14px;
  color: #1B3A57;
  padding: 8px 16px;
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E8E5E0;
}

.pricing-tables {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-item {
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
}

.pricing-item h3 {
  font-size: 24px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.base-price {
  font-size: 32px;
  font-weight: 700;
  color: #E8B339;
  font-family: 'Palatino', serif;
  margin: 16px 0;
}

.pricing-item ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.pricing-item li {
  padding: 8px 0;
  color: #4A4A4A;
  border-bottom: 1px solid #E8E5E0;
}

.pricing-item li:last-child {
  border-bottom: none;
}

.note {
  font-size: 13px;
  color: #8A8A8A;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   PACKAGE PRICING
   ============================================ */

.package-pricing {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

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

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

.package-card.popular {
  border-color: #E8B339;
  border-width: 3px;
  transform: scale(1.05);
}

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

.package-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E8B339;
  color: #1B3A57;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.package-card h3 {
  font-size: 26px;
  color: #1B3A57;
  margin-bottom: 8px;
}

.target {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 16px;
}

.package-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #E8B339;
  font-family: 'Palatino', serif;
  margin: 16px 0 8px;
}

.setup {
  font-size: 14px;
  color: #8A8A8A;
  margin-bottom: 20px;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  text-align: left;
}

.package-card li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4A4A4A;
  border-bottom: 1px solid #F0EDE8;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B339;
  font-weight: 700;
  font-size: 18px;
}

.savings {
  font-size: 14px;
  color: #2E5984;
  font-weight: 600;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #E8E5E0;
}

/* ============================================
   PAYMENT OPTIONS
   ============================================ */

.payment-options {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.payment-option {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  margin-bottom: 20px;
}

.payment-option h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.payment-option p {
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.contact-method h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.contact-method p {
  color: #4A4A4A;
  margin-bottom: 8px;
}

.availability {
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
}

.office-details {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

.office-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.info-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
}

.info-block h3 {
  font-size: 20px;
  color: #1B3A57;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E8B339;
}

.info-block p {
  color: #4A4A4A;
  margin-bottom: 8px;
}

/* ============================================
   BUSINESS INFO
   ============================================ */

.business-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.info-table {
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  max-width: 800px;
  margin: 0 auto;
}

.info-table p {
  padding: 12px 0;
  border-bottom: 1px solid #E8E5E0;
  color: #4A4A4A;
}

.info-table p:last-child {
  border-bottom: none;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  font-size: 32px;
  color: #1B3A57;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

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

.value-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  margin-bottom: 20px;
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

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

.value-card p {
  font-size: 14px;
  color: #6A6A6A;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  background-color: #F9F7F4;
  padding: 24px 24px 24px 100px;
  border-radius: 8px;
  border-left: 4px solid #E8B339;
  position: relative;
}

.year {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 32px;
  font-weight: 700;
  color: #E8B339;
  font-family: 'Palatino', serif;
}

.timeline-item h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
  color: #6A6A6A;
}

/* ============================================
   TEAM STATS
   ============================================ */

.team-stats {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

.team-stats h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team-stats > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 16px;
  color: #4A4A4A;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.cert-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  margin-bottom: 20px;
}

.cert-card h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8B339;
}

.cert-card p {
  color: #4A4A4A;
  margin-bottom: 8px;
}

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.content-wrapper h2 {
  font-size: 28px;
  color: #1B3A57;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8B339;
}

.content-wrapper p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.content-wrapper li {
  color: #4A4A4A;
  margin-bottom: 8px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, #1B3A57 0%, #2E5984 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background-color: #E8B339;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 48px;
  height: 48px;
  filter: invert(1);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 18px;
  color: #E8E5E0;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   NEXT STEPS SECTION
   ============================================ */

.next-steps {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.step-card p {
  color: #4A4A4A;
  margin-bottom: 12px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.resource-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #F9F7F4;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 22px;
  color: #1B3A57;
  margin-bottom: 12px;
}

.resource-card p {
  color: #4A4A4A;
  margin-bottom: 16px;
}

.contact-summary {
  background-color: #F0EDE8;
  padding: 60px 20px;
}

.contact-summary .contact-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #E8E5E0;
  max-width: 600px;
  margin: 0 auto;
}

.contact-summary .contact-info p {
  padding: 12px 0;
  border-bottom: 1px solid #E8E5E0;
  color: #4A4A4A;
}

.contact-summary .contact-info p:last-child {
  border-bottom: none;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1B3A57;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-btn.accept {
  background-color: #E8B339;
  color: #1B3A57;
}

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

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

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

.cookie-btn.settings {
  background-color: transparent;
  color: #E8E5E0;
  text-decoration: underline;
}

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

/* ============================================
   COOKIE MODAL
   ============================================ */

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

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

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #1B3A57;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #E8B339;
  transform: rotate(90deg);
}

.modal-content h2 {
  font-size: 28px;
  color: #1B3A57;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #E8E5E0;
}

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

.category-header h3 {
  font-size: 18px;
  color: #1B3A57;
  margin-bottom: 4px;
}

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

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

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

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #E8B339;
}

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

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

.category-description {
  font-size: 13px;
  color: #6A6A6A;
  margin-top: 8px;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  /* Navigation */
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  /* Features */
  .feature-card {
    flex: 1 1 100%;
  }

  /* Services */
  .service-card {
    flex: 1 1 100%;
  }

  /* Stats */
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }

  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }

  /* Packages */
  .package-card {
    flex: 1 1 100%;
  }

  .package-card.popular {
    transform: scale(1);
  }

  /* Process */
  .process-step {
    flex: 1 1 100%;
  }

  /* Timeline */
  .timeline-item {
    padding: 24px;
  }

  .year {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }

  /* Modal */
  .modal-content {
    padding: 24px;
  }

  /* Contact Methods */
  .contact-method {
    flex: 1 1 100%;
  }

  /* Industry Cards */
  .industry-card {
    flex: 1 1 100%;
  }

  /* Value Cards */
  .value-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Features */
  .feature-card {
    flex: 1 1 calc(50% - 16px);
  }

  /* Services */
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  /* Stats */
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }

  /* Packages */
  .package-card {
    flex: 1 1 calc(50% - 12px);
  }

  /* Value Cards */
  .value-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.service-card,
.testimonial-card,
.package-card {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  header {
    position: static;
  }

  .btn {
    border: 1px solid #000;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

:focus {
  outline: 2px solid #E8B339;
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 2px solid #E8B339;
  outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}