/* ========================================
   FALCON TREASURY - ELEGANT CLASSIC DESIGN
   ======================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #faf8f5;
  overflow-x: hidden;
}

/* TYPOGRAPHY - ELEGANT CLASSIC STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #5FA8D3;
}

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

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

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

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

/* BUTTONS - ELEGANT CLASSIC STYLE */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  border: 2px solid;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #1B4965;
  color: #ffffff;
  border-color: #1B4965;
}

.btn-primary:hover {
  background-color: #153a52;
  border-color: #153a52;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 73, 101, 0.2);
}

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

.btn-secondary:hover {
  background-color: #1B4965;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

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

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

.main-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #1B4965;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(27, 73, 101, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 32px 32px;
  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: #2c2c2c;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  padding: 12px 0;
  border-bottom: 1px solid #e8e4de;
  transition: all 0.3s ease;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 2px solid #e8e4de;
}

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

.hero h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e8e4de;
}

.trust-indicators span {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 14px;
  color: #6a6a6a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.breadcrumb {
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #1B4965;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6a6a6a;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.benefit-card h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
}

/* SERVICES */
.services-overview,
.services {
  background-color: #faf8f5;
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card,
.service-detail {
  flex: 1 1 320px;
  max-width: 380px;
  padding: 40px 32px;
  background-color: #ffffff;
  border: 2px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.service-detail:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #1B4965;
}

.service-card h3,
.service-detail h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.service-card p,
.service-detail p {
  font-size: 15px;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.service-card .price,
.service-detail .price {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1B4965;
  margin: 24px 0;
}

.service-detail.popular {
  border-color: #1B4965;
  border-width: 3px;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1B4965;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}

/* PROCESS STEPS */
.process {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.process-step {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #faf8f5;
  border-left: 4px solid #1B4965;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.process-step p {
  font-size: 15px;
  color: #4a4a4a;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  padding: 40px;
  background-color: #faf8f5;
  border-left: 4px solid #1B4965;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  color: #2c2c2c;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 14px;
  color: #1B4965;
  font-weight: 600;
  font-style: normal;
  text-align: right;
}

.testimonials .rating {
  text-align: center;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 18px;
  color: #1B4965;
  font-weight: 600;
  margin-top: 32px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1B4965 0%, #2d5f7e 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
}

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

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #1B4965;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #CAE9FF;
  border-color: #CAE9FF;
  color: #1B4965;
}

.cta-banner .guarantee {
  font-size: 14px;
  color: #CAE9FF;
  margin-top: 24px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* EDUCATIONAL CONTENT */
.educational-overview,
.content-module {
  background-color: #faf8f5;
}

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

.topic-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.topic-card h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 16px;
}

.content-module {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  padding: 60px 20px;
}

.content-module h2 {
  color: #1a1a1a;
  margin-bottom: 24px;
}

.content-module h3 {
  color: #1B4965;
  margin-top: 32px;
  margin-bottom: 20px;
}

.content-module ul {
  margin-left: 32px;
  margin-bottom: 24px;
}

.content-module li {
  color: #4a4a4a;
  margin-bottom: 12px;
}

.tip,
.motivation {
  background-color: #f0ebe3;
  border-left: 4px solid #1B4965;
  padding: 20px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #2c2c2c;
}

/* RESOURCES */
.resources-overview,
.calculators,
.templates,
.checklists {
  background-color: #faf8f5;
}

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

.category-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.calculator-list,
.templates-grid,
.checklists-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.calculator-item,
.template-item,
.checklist-item {
  flex: 1 1 280px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.calculator-item:hover,
.template-item:hover,
.checklist-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.calculator-item h3,
.template-item h3,
.checklist-item h3 {
  font-size: 18px;
  color: #1B4965;
  margin-bottom: 12px;
}

.note {
  text-align: center;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 24px;
}

/* CONTACT PAGE */
.contact-options,
.appointment,
.location,
.office-hours {
  background-color: #faf8f5;
}

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

.contact-option {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.contact-option h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 16px;
}

.booking-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
}

.booking-info ul {
  text-align: left;
  margin: 24px 0;
}

.location-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
}

.address {
  font-size: 18px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 24px;
}

.hours {
  font-size: 18px;
  color: #2c2c2c;
  text-align: center;
  line-height: 2;
}

/* COMPANY STORY & CREDENTIALS */
.company-story,
.credentials,
.philosophy {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

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

.mission {
  font-size: 20px;
  color: #1B4965;
  font-weight: 600;
  font-style: italic;
  padding: 24px;
  background-color: #f0ebe3;
  border-left: 4px solid #1B4965;
  margin: 32px 0;
}

.values-list {
  list-style: none;
  margin-left: 0;
}

.values-list li {
  padding: 16px;
  margin-bottom: 16px;
  background-color: #faf8f5;
  border-left: 4px solid #1B4965;
  border-radius: 4px;
}

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

.credential-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 24px;
  background-color: #faf8f5;
  border: 2px solid #1B4965;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.credential-card h3 {
  font-size: 16px;
  color: #1B4965;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e8e4de;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 48px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #4a4a4a;
}

.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.principle {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.principle h3 {
  font-size: 18px;
  color: #1B4965;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
}

.legal-content h1 {
  font-size: 36px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e8e4de;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #1B4965;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2c2c2c;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 24px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content h1 {
  font-size: 48px;
  color: #1B4965;
  margin-bottom: 24px;
}

.next-steps,
.while-you-wait {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card,
.suggestion-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background-color: #faf8f5;
  border: 1px solid #e8e4de;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1B4965;
}

.step-card h3,
.suggestion-card h3 {
  font-size: 20px;
  color: #1B4965;
  margin-bottom: 16px;
}

.contact-note {
  text-align: center;
  font-size: 16px;
  color: #4a4a4a;
  margin-top: 40px;
  font-style: italic;
}

.testimonial-section {
  background-color: #faf8f5;
  padding: 60px 20px;
}

.social-proof {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

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

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 48px;
  font-weight: 600;
  color: #1B4965;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #4a4a4a;
}

.contact-reminder {
  background-color: #faf8f5;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border: 1px solid #e8e4de;
  border-radius: 4px;
}

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

.confirmation {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.confirmation h2 {
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  background-color: #2c2c2c;
  color: #d4d4d4;
  padding: 60px 20px 32px;
  border-top: 4px solid #1B4965;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #d4d4d4;
  margin-bottom: 12px;
}

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

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

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #4a4a4a;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1B4965;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1998;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #CAE9FF;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Garamond', 'Georgia', serif;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #1B4965;
}

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

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: #ffffff;
}

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

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

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

.cookie-modal-header h3 {
  font-size: 24px;
  color: #1B4965;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #2c2c2c;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.3s ease;
}

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

.cookie-modal-body {
  padding: 32px;
}

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

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

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

.cookie-category h4 {
  font-size: 18px;
  color: #1B4965;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #d4d4d4;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1B4965;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

.cookie-category p {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid #e8e4de;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  padding: 12px 32px;
  font-size: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Display */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .topics-grid,
  .contact-grid,
  .credentials-grid,
  .principles-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-card,
  .service-card,
  .service-detail,
  .process-step,
  .testimonial-card,
  .topic-card,
  .contact-option,
  .credential-card,
  .principle {
    max-width: 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    max-height: 90vh;
  }
  
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .service-card .price,
  .service-detail .price {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner {
    display: none;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}