/* ===================================
   FROSTY BROOK - PROFESSIONAL CORPORATE STYLES
   Design Style: Professional Corporate
   ================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A2A3A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4A5568;
}

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

a:hover {
  color: #4A90C8;
}

ul {
  list-style: none;
}

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

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

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

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

.btn-primary:hover {
  background-color: #1F4A6E;
  border-color: #1F4A6E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background-color: #E8F4F8;
  border-color: #4A90C8;
  color: #4A90C8;
}

.btn-link {
  background: none;
  color: #2C5F8D;
  padding: 8px 16px;
  border: none;
  font-weight: 600;
}

.btn-link:hover {
  color: #4A90C8;
  text-decoration: underline;
}

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

.mobile-menu-toggle:hover {
  background-color: #1F4A6E;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease;
  padding: 80px 20px 20px 20px;
  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: #2C5F8D;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #1F4A6E;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #E8F4F8;
  color: #2C5F8D;
  transform: translateX(8px);
}

/* HEADER */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: #2C5F8D;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2C5F8D;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  color: #718096;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #4A5568;
}

.breadcrumb a:hover {
  color: #2C5F8D;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A90C8 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

.hero p {
  color: #E8F4F8;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background-color: #FFFFFF;
  color: #2C5F8D;
  border-color: #FFFFFF;
}

.hero-cta .btn-primary:hover {
  background-color: #E8F4F8;
  color: #1F4A6E;
  border-color: #E8F4F8;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.hero-cta .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #E8F4F8;
  font-weight: 600;
}

.trust-badges span::before {
  content: '✓';
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
  color: #FFFFFF;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #718096;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BENEFITS SECTION */
.benefits {
  background-color: #F7FAFC;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.15);
}

.benefit-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #4A5568;
  font-size: 15px;
}

/* SERVICES SECTION */
.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

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

.service-card:hover {
  border-color: #4A90C8;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.12);
  transform: translateY(-4px);
}

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

.service-card p {
  color: #4A5568;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

/* HOW IT WORKS SECTION */
.how-it-works {
  background-color: #F7FAFC;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

.step h3 {
  margin-bottom: 12px;
  color: #1A2A3A;
}

.step p {
  color: #718096;
  font-size: 15px;
}

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

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4A90C8;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F8D;
  font-style: normal;
  font-size: 14px;
}

.testimonials .rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
}

/* TRUST SECTION */
.trust {
  background-color: #FFFFFF;
}

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

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

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

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

.stat p {
  color: #718096;
  font-size: 15px;
}

.certifications {
  text-align: center;
  color: #718096;
  font-size: 14px;
}

/* CTA SECTIONS */
.cta-final,
.cta {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A90C8 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

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

.cta-final p,
.cta p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 16px;
}

.cta-final .subtitle,
.cta .subtitle {
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: #FFFFFF;
  color: #2C5F8D;
  border-color: #FFFFFF;
}

.cta-buttons .btn-primary:hover {
  background-color: #E8F4F8;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.guarantee,
.availability {
  font-size: 14px;
  color: #E8F4F8;
  font-style: italic;
}

/* SERVICES DETAILED */
.services-detailed {
  background-color: #F7FAFC;
}

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

.service-detailed {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #4A90C8;
}

.service-detailed h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 24px 0;
}

.coverage {
  margin: 24px 0;
}

.coverage h4 {
  color: #1A2A3A;
  margin-bottom: 12px;
}

.coverage ul {
  list-style: none;
  padding: 0;
}

.coverage ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: #4A5568;
  font-size: 15px;
}

.coverage ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4A90C8;
  font-weight: 700;
  font-size: 18px;
}

/* COMPARISON TABLE */
.comparison {
  background-color: #F7FAFC;
}

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

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

.package {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #E2E8F0;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.package.popular {
  border-color: #4A90C8;
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.15);
  transform: scale(1.05);
}

.package h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.package .badge {
  display: inline-block;
  background-color: #4A90C8;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.package ul {
  text-align: left;
  padding: 0;
}

.package ul li {
  padding: 12px 0;
  color: #4A5568;
  border-bottom: 1px solid #E2E8F0;
  font-size: 15px;
}

.package ul li:last-child {
  border-bottom: none;
}

/* PROCESS SECTION */
.process {
  background-color: #FFFFFF;
}

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

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.steps-list .step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
  text-align: left;
}

.steps-list .step-number {
  flex-shrink: 0;
}

/* PROCESS DETAILED */
.process-detailed {
  background-color: #F7FAFC;
}

.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 48px auto 0;
}

.step-detailed {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-detailed .step-number {
  flex-shrink: 0;
}

.step-detailed h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.step-detailed p {
  color: #4A5568;
  font-size: 15px;
}

.time-info {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 32px;
}

/* FEATURES SECTION */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.feature {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.feature h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.feature p {
  color: #4A5568;
  font-size: 15px;
}

/* COMPARISON TRADITIONAL */
.comparison-traditional {
  background-color: #F7FAFC;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.comparison-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.comparison-item h3 {
  color: #1A2A3A;
  margin-bottom: 16px;
  font-size: 18px;
}

.comparison-item .us {
  font-size: 24px;
  font-weight: 700;
  color: #4A90C8;
  margin-bottom: 8px;
}

.comparison-item .them {
  font-size: 16px;
  color: #718096;
  text-decoration: line-through;
}

/* SECURITY SECTION */
.security {
  background-color: #FFFFFF;
}

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

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

.security-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 8px;
  margin-bottom: 20px;
}

.security-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.security-item p {
  color: #4A5568;
  font-size: 15px;
}

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

.benefits-recap span {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
}

/* CLAIMS PROCESS */
.claims-process {
  background-color: #F7FAFC;
}

.process-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.phase {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #4A90C8;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.phase h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 18px;
}

.phase p {
  color: #4A5568;
  font-size: 14px;
}

.timeline {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 32px;
}

/* DOCUMENTS SECTION */
.documents {
  background-color: #FFFFFF;
}

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

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

.document-category {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.document-category h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.document-category ul {
  padding: 0;
}

.document-category ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
  font-size: 15px;
}

.document-category ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4A90C8;
  font-weight: 700;
  font-size: 20px;
}

.format-info {
  text-align: center;
  color: #718096;
  font-size: 14px;
  font-style: italic;
}

/* ASSISTANCE SECTION */
.assistance {
  background-color: #F7FAFC;
}

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

.assistance .subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 48px;
}

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

.assistance-services .service {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.assistance-services .service h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.assistance-services .service p {
  color: #4A5568;
  font-size: 15px;
}

/* STATISTICS SECTION */
.statistics {
  background-color: #FFFFFF;
}

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

/* STORY SECTION */
.story {
  background-color: #F7FAFC;
}

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

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

/* MISSION SECTION */
.mission {
  background-color: #FFFFFF;
}

.mission h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.mission-statement .large {
  font-size: 24px;
  line-height: 1.6;
  color: #2C5F8D;
  font-weight: 600;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.value {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 8px;
  margin-bottom: 20px;
}

.value h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.value p {
  color: #4A5568;
  font-size: 15px;
}

/* TECHNOLOGY SECTION */
.technology {
  background-color: #F7FAFC;
}

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

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

.tech-feature {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.tech-feature h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.tech-feature p {
  color: #4A5568;
  font-size: 15px;
}

.badge {
  display: inline-block;
  background-color: #4A90C8;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}

/* AWARDS SECTION */
.awards {
  background-color: #FFFFFF;
}

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

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

.award {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #F7FAFC;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.award h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 20px;
}

.award p {
  color: #718096;
  font-size: 14px;
}

/* CONTACT METHODS */
.contact-methods {
  background-color: #F7FAFC;
}

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

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

.method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.method h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.method p {
  color: #4A5568;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.method .details {
  font-size: 14px;
  color: #718096;
  font-weight: 400;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #FFFFFF;
}

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #F7FAFC;
  padding: 40px;
  border-radius: 8px;
}

.form-info {
  margin-bottom: 24px;
}

.form-info p {
  padding: 12px 0;
  color: #4A5568;
  font-size: 15px;
  border-bottom: 1px solid #E2E8F0;
}

.response-time {
  text-align: center;
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
}

/* OFFICE INFO */
.office-info {
  background-color: #F7FAFC;
}

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

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

.detail {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.detail h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.detail p {
  color: #4A5568;
  font-size: 15px;
}

/* DEPARTMENTS */
.departments {
  background-color: #FFFFFF;
}

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

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

.department {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #F7FAFC;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.department h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 18px;
}

.department p {
  color: #4A5568;
  font-size: 14px;
}

/* WORKING HOURS */
.working-hours {
  background-color: #F7FAFC;
}

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

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

.hours-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.hours-item h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.hours-item p {
  color: #4A5568;
  font-size: 15px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #FFFFFF;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #F7FAFC;
  padding: 48px;
  border-radius: 8px;
}

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

.content-wrapper h3 {
  color: #1A2A3A;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  color: #4A5568;
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.content-wrapper ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #4A90C8;
  font-weight: 700;
  font-size: 20px;
}

.update-date,
.effective-date {
  text-align: center;
  color: #718096;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* RIGHTS SUMMARY */
.rights-summary {
  background-color: #F7FAFC;
}

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

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

.right {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.right h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.right p {
  color: #4A5568;
  font-size: 15px;
}

.contact-info {
  text-align: center;
  color: #2C5F8D;
  font-weight: 600;
}

/* CONTACT DPO */
.contact-dpo {
  background-color: #F7FAFC;
}

.contact-dpo h2 {
  text-align: center;
  margin-bottom: 32px;
}

.contact-dpo .contact-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.contact-dpo .contact-info p {
  color: #4A5568;
  margin-bottom: 12px;
}

.contact-dpo .contact-info strong {
  color: #2C5F8D;
}

/* COOKIE SETTINGS */
.cookie-settings {
  background-color: #FFFFFF;
}

.cookie-settings h2 {
  text-align: center;
  margin-bottom: 32px;
}

.cookie-settings > p {
  text-align: center;
  color: #718096;
  margin-bottom: 48px;
}

.settings-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.setting {
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #4A90C8;
}

.setting h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.setting p {
  color: #4A5568;
  font-size: 15px;
}

.cookie-settings .info {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-top: 32px;
}

/* SUMMARY SECTION */
.summary {
  background-color: #F7FAFC;
}

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

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

.summary-box {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.summary-box h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
  font-size: 28px;
}

.summary-box p {
  color: #4A5568;
  font-size: 15px;
}

/* THANK YOU PAGE */
.hero-thankyou {
  background: linear-gradient(135deg, #2C5F8D 0%, #4A90C8 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #4A90C8;
  border-radius: 50%;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-thankyou h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero-thankyou p {
  color: #E8F4F8;
  font-size: 18px;
}

/* CONFIRMATION */
.confirmation {
  background-color: #F7FAFC;
}

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

/* NEXT ACTIONS */
.next-steps,
.next-actions {
  background-color: #FFFFFF;
}

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

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

.action {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.action h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.action p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 16px;
}

/* CONTACT ALTERNATIVE */
.contact-alternative {
  background-color: #F7FAFC;
}

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

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

.contact-alternative .method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background-color: #1A2A3A;
  color: #E2E8F0;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.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: 200px;
}

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

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

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

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

.footer-section nav a:hover {
  color: #4A90C8;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #2D3748;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A2A3A;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  animation: slideUp 0.3s ease;
}

.cookie-consent.active {
  display: block;
}

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

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

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

.cookie-consent-text p {
  color: #E2E8F0;
  font-size: 14px;
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background-color: #4A90C8;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #2C5F8D;
}

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

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

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

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #718096;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

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

.cookie-modal h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background-color: #F7FAFC;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #1A2A3A;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
}

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

.cookie-modal-actions button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #2C5F8D;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #1F4A6E;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: space-between;
  }
  
  .header-cta {
    width: 100%;
    justify-content: center;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .stats-grid,
  .features-grid,
  .comparison-grid,
  .security-features,
  .process-phases,
  .documents-grid,
  .assistance-services,
  .values-grid,
  .tech-features,
  .awards-list,
  .methods-grid,
  .office-details,
  .departments-grid,
  .hours-grid,
  .rights-grid,
  .summary-grid,
  .actions-grid,
  .comparison-table {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .stat,
  .feature,
  .comparison-item,
  .security-item,
  .phase,
  .document-category,
  .value,
  .tech-feature,
  .award,
  .method,
  .detail,
  .department,
  .hours-item,
  .right,
  .summary-box,
  .action,
  .package {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .package.popular {
    transform: scale(1);
  }
  
  /* Step detailed */
  .step-detailed {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Content wrapper */
  .content-wrapper {
    padding: 32px 24px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .service-card,
  .benefit-card {
    padding: 24px;
  }
  
  .step-number,
  .phase-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  .hero {
    background: #FFFFFF;
    color: #000000;
  }
  
  .hero h1,
  .hero p {
    color: #000000;
  }
}