/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1A365D;
}

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

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

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

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #2D3748;
}

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

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

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

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

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #2D3748;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

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

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

.main-nav a:hover {
  color: #1A365D;
}

/* ===================================
   MOBILE MENU
   =================================== */

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

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #1A365D;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #2D3748;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F7FAFC;
  color: #1A365D;
  padding-left: 40px;
}

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

.hero {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #E2E8F0;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #ED8936;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #ED8936;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.btn-primary:hover {
  background-color: #DD6B20;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(237, 137, 54, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

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

.service-card .btn,
.service-detail-card .btn,
.featured-card .btn {
  background-color: #1A365D;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
}

.service-card .btn:hover,
.service-detail-card .btn:hover,
.featured-card .btn:hover {
  background-color: #2C5282;
  transform: translateY(-2px);
}

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

/* ===================================
   TRUST BADGES
   =================================== */

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

.badge {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.trust-badge,
.trust-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #CBD5E0;
}

/* ===================================
   SERVICE SECTIONS
   =================================== */

.services-overview,
.services-detailed,
.services-grid {
  background-color: #F7FAFC;
  padding: 60px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.service-detail-card,
.featured-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

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

.service-card h3,
.service-detail-card h3,
.featured-card h3 {
  color: #1A365D;
  margin-bottom: 12px;
}

.service-card ul,
.service-detail-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.service-card li,
.service-detail-card li {
  padding-left: 24px;
  position: relative;
  color: #4A5568;
  font-size: 14px;
}

.service-card li::before,
.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ED8936;
  font-weight: bold;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #ED8936;
  margin: 16px 0;
}

.price-highlight {
  font-size: 32px;
  font-weight: 700;
  color: #ED8936;
  text-align: center;
  margin: 24px 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

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

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

.benefits-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  padding: 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: #EDF2F7;
  transform: translateY(-2px);
}

.benefit-item img {
  width: 48px;
  height: 48px;
}

.benefit-item h3 {
  font-size: 18px;
  color: #1A365D;
}

.benefit-item p {
  font-size: 14px;
  color: #4A5568;
  margin: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

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

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

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  color: #1A365D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}

.testimonial-card .rating {
  color: #ED8936;
  font-size: 18px;
  margin-top: 8px;
}

/* ===================================
   PROCESS & STEPS
   =================================== */

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

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

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background-color: #F7FAFC;
  padding: 24px;
  border-radius: 8px;
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  position: relative;
  border-top: 4px solid #ED8936;
}

.step h3 {
  color: #1A365D;
  font-size: 18px;
  margin-bottom: 12px;
}

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

/* ===================================
   FEATURED SERVICES
   =================================== */

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

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

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

/* ===================================
   LOCATION & CONTACT
   =================================== */

.location,
.contact-info-section,
.contact-options {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.location h2,
.contact-info-section h2,
.contact-options h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-grid,
.contact-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.location-info,
.contact-card,
.info-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
}

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

.contact-card h3,
.info-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

.note {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  margin-top: 8px;
}

/* ===================================
   CTA FINAL SECTIONS
   =================================== */

.cta-final {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

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

.cta-final p {
  color: #E2E8F0;
  font-size: 18px;
  margin-bottom: 32px;
}

.availability,
.hours,
.response-time,
.guarantee,
.timeline {
  color: #CBD5E0;
  font-size: 14px;
  margin-top: 24px;
}

/* ===================================
   QUALITY & PRICING
   =================================== */

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

.quality h2,
.pricing h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.quality-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
}

.quality-item h3 {
  color: #1A365D;
  font-size: 18px;
  margin-bottom: 12px;
}

.pricing-principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.principle {
  background-color: #F7FAFC;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #ED8936;
}

.principle p {
  margin: 0;
  color: #2D3748;
  font-size: 16px;
}

.pricing-examples {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
}

/* ===================================
   PROBLEMS SECTION
   =================================== */

.problems {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

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

.problems > .container > p {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  justify-content: center;
}

.problem-item {
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #E53E3E;
  font-size: 14px;
  font-weight: 600;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
}

.solution {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1A365D;
  margin-top: 32px;
}

/* ===================================
   SERVICE DETAILS
   =================================== */

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

.detail-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: #F7FAFC;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.detail-box h3 {
  color: #1A365D;
  margin: 24px 0 16px;
}

.detail-box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.detail-box li {
  padding-left: 28px;
  position: relative;
  color: #2D3748;
  font-size: 16px;
}

.detail-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ED8936;
  font-weight: bold;
  font-size: 18px;
}

/* ===================================
   SYSTEMS GRID
   =================================== */

.systems {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

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

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

.system-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.system-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
}

/* ===================================
   VALUES & STORY
   =================================== */

.story,
.values,
.team,
.statistics {
  padding: 60px 20px;
}

.story {
  background-color: #FFFFFF;
}

.values {
  background-color: #F7FAFC;
}

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

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

.milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.milestone {
  background-color: #F7FAFC;
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid #ED8936;
  font-weight: 600;
  color: #1A365D;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

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

/* ===================================
   TEAM SECTION
   =================================== */

.team {
  background-color: #FFFFFF;
}

.team-info {
  max-width: 800px;
  margin: 32px auto;
  background-color: #F7FAFC;
  padding: 32px;
  border-radius: 12px;
}

.team-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.team-info li {
  padding-left: 28px;
  position: relative;
  color: #2D3748;
}

.team-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ED8936;
  font-weight: bold;
}

/* ===================================
   STATISTICS
   =================================== */

.statistics {
  background-color: #F7FAFC;
}

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

.stat-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 180px;
  transition: all 0.3s ease;
}

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

.stat-item h3 {
  font-size: 48px;
  color: #ED8936;
  margin-bottom: 8px;
}

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

/* ===================================
   LOCATION ABOUT
   =================================== */

.location-about {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.location-about h2 {
  margin-bottom: 32px;
}

.location-about p {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 16px;
}

/* ===================================
   FAQ SECTION
   =================================== */

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

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

.faq-item {
  background-color: #F7FAFC;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #ED8936;
}

.faq-item h3 {
  color: #1A365D;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A5568;
  margin: 0;
}

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

.thank-you {
  padding: 80px 20px;
  background-color: #F7FAFC;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48BB78;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.thank-you h1 {
  color: #1A365D;
  margin-bottom: 24px;
}

.message {
  font-size: 18px;
  color: #2D3748;
  margin-bottom: 16px;
}

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

.next-steps,
.contact-alternatives,
.related-content,
.navigation-links {
  padding: 60px 20px;
}

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

.intro {
  text-align: center;
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.related-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
}

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

.nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   LEGAL PAGES
   =================================== */

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

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 16px 0;
}

.legal-content li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: #2D3748;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #ED8936;
  font-weight: bold;
}

.last-updated,
.subtitle {
  color: #718096;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

.acknowledgment {
  margin-top: 40px;
  padding: 24px;
  background-color: #F7FAFC;
  border-radius: 8px;
  border-left: 4px solid #ED8936;
  font-weight: 600;
  color: #1A365D;
}

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

footer {
  background-color: #1A365D;
  color: #E2E8F0;
  padding: 60px 20px 32px;
}

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

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

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

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

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

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

.footer-section a:hover {
  color: #ED8936;
  padding-left: 4px;
}

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

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

.footer-nav a {
  font-size: 14px;
  color: #CBD5E0;
}

.footer-nav a:hover {
  color: #ED8936;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A365D;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 950;
  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;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 auto;
  min-width: 280px;
}

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

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

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

/* 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: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal h2 {
  color: #1A365D;
  margin-bottom: 24px;
}

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

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  font-size: 14px;
  color: #2D3748;
  cursor: pointer;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Header & Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* Sections */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Grids & Flexbox */
  .service-grid,
  .featured-grid,
  .benefits-grid,
  .testimonial-grid,
  .process-steps,
  .steps-grid,
  .quality-grid,
  .values-grid,
  .systems-grid,
  .stats-grid,
  .contact-grid,
  .info-grid,
  .related-links {
    flex-direction: column;
  }
  
  .service-card,
  .service-detail-card,
  .featured-card,
  .benefit-item,
  .testimonial-card,
  .step,
  .quality-item,
  .value-card,
  .system-card,
  .stat-item,
  .contact-card,
  .info-card,
  .related-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons,
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .featured-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .benefit-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.service-card,
.testimonial-card,
.benefit-item {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #ED8936;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}