/* CSS Reset and 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* Warm Friendly Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

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

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

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #555555;
}

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

a:hover {
  color: #F39C12;
}

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

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

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

/* Header Styles */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.1);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #F39C12;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1E3A5F;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: #F39C12;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu */
.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: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  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: #1E3A5F;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #FFF8F0;
  color: #F39C12;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1E3A5F;
  padding: 16px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 16px;
}

.mobile-nav a:hover {
  background-color: #FFF8F0;
  color: #F39C12;
  padding-left: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero p {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  opacity: 0.95;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary, .btn-secondary, .btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #F39C12;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #E67E22;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.3);
}

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

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

.btn {
  background-color: #4A90E2;
  color: #FFFFFF;
}

.btn:hover {
  background-color: #357ABD;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

.trust-badge {
  font-size: 14px;
  color: #FFFFFF;
  background-color: rgba(243, 156, 18, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
}

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

/* Services Grid */
.services-preview, .services-detailed {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-preview h2, .services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-preview > .container > p {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
}

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

.service-card {
  background-color: #FFF8F0;
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.2);
  border-color: #F39C12;
}

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

.service-card p {
  color: #666666;
  margin-bottom: 16px;
  font-size: 15px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #F39C12;
  margin: 20px 0;
}

.service-card a {
  display: inline-block;
  color: #4A90E2;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid #4A90E2;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.service-card a:hover {
  background-color: #4A90E2;
  color: #FFFFFF;
}

/* Service Detail */
.service-detail {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 5px solid #F39C12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.service-detail h2 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
}

.service-detail ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #555555;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F39C12;
  font-weight: 700;
  font-size: 20px;
}

.service-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: #F39C12;
  font-weight: 700;
  margin: 24px 0;
}

/* Features Section */
.features {
  background-color: #FFF8F0;
  border-radius: 30px;
  padding: 60px 20px;
}

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

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

.feature {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 4px solid #4A90E2;
  margin-bottom: 20px;
  position: relative;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
}

.feature h3 {
  color: #1E3A5F;
  margin-bottom: 12px;
}

.feature p {
  color: #666666;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1E3A5F;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 5px solid #F39C12;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.15);
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #1E3A5F;
  font-style: normal;
  font-size: 15px;
  margin-top: 8px;
}

.testimonial-card .rating {
  color: #F39C12;
  font-weight: 700;
  font-style: normal;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
}

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

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section .trust {
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* Company Story */
.company-story, .mission-vision {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.company-story h2, .mission-vision h2 {
  color: #1E3A5F;
  margin-bottom: 32px;
}

.company-story p {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 24px;
}

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.milestone {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 280px;
  background-color: #FFF8F0;
  padding: 24px;
  border-radius: 15px;
  text-align: center;
  border-top: 4px solid #F39C12;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.milestone:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(243, 156, 18, 0.15);
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #F39C12;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.milestone p {
  color: #555555;
  font-size: 15px;
}

/* Mission and Values */
.mission, .values {
  background-color: #FFF8F0;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  border-left: 5px solid #4A90E2;
}

.mission h3, .values h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

.values ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #555555;
}

.values ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #4A90E2;
  font-weight: 700;
}

/* Stats/Numbers Section */
.numbers, .coverage-overview {
  background: linear-gradient(135deg, #1E3A5F 0%, #4A90E2 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.numbers h2, .coverage-overview h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

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

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.stat:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #F39C12;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.stat p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* Coverage Sections */
.domestic-coverage, .international-coverage, .coverage-overview {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.domestic-coverage h2, .international-coverage h2 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.domestic-coverage > .container > p, .international-coverage > .container > p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

.domestic-coverage ul, .international-coverage ul {
  list-style: none;
  margin-left: 0;
}

.domestic-coverage ul li, .international-coverage ul li {
  padding: 16px 20px;
  padding-left: 48px;
  position: relative;
  margin-bottom: 12px;
  background-color: #FFF8F0;
  border-radius: 12px;
  color: #333333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.domestic-coverage ul li:hover, .international-coverage ul li:hover {
  background-color: #FFE4B5;
  transform: translateX(5px);
}

.domestic-coverage ul li::before, .international-coverage ul li::before {
  content: '📍';
  position: absolute;
  left: 16px;
  font-size: 20px;
}

/* Pricing Tables */
.pricing-overview, .pricing-tables, .volume-discounts {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-overview h2, .pricing-tables h2, .volume-discounts h2 {
  color: #1E3A5F;
  margin-bottom: 32px;
}

.pricing-overview ul {
  list-style: none;
  margin-left: 0;
}

.pricing-overview ul li {
  padding: 12px 20px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 12px;
  color: #555555;
}

.pricing-overview ul li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #4A90E2;
  font-weight: 700;
  font-size: 18px;
}

.price-table {
  background-color: #FFF8F0;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  border-top: 5px solid #F39C12;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.price-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.15);
}

.price-table h3 {
  color: #1E3A5F;
  margin-bottom: 20px;
}

.price-table .base-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: #F39C12;
  font-weight: 700;
  margin: 20px 0;
}

.price-table p {
  color: #555555;
  margin-bottom: 12px;
  line-height: 1.7;
}

.volume-discounts ul {
  list-style: none;
  margin-left: 0;
}

.volume-discounts ul li {
  padding: 16px 24px;
  padding-left: 56px;
  position: relative;
  margin-bottom: 16px;
  background-color: #FFF8F0;
  border-radius: 12px;
  color: #333333;
  font-size: 16px;
  border-left: 4px solid #4A90E2;
}

.volume-discounts ul li::before {
  content: '🎁';
  position: absolute;
  left: 20px;
  font-size: 24px;
}

/* Contact Methods */
.contact-methods, .contact-info, .office-info {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-methods h2, .contact-info h2, .office-info h2 {
  color: #1E3A5F;
  margin-bottom: 40px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background-color: #FFF8F0;
  padding: 40px;
  border-radius: 20px;
  border-top: 4px solid #F39C12;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.15);
}

.contact-method h3 {
  color: #1E3A5F;
  margin-bottom: 16px;
}

.contact-method p {
  color: #555555;
  margin-bottom: 12px;
}

.contact-details {
  background-color: #FFF8F0;
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid #4A90E2;
  margin-top: 32px;
}

.contact-details p {
  margin-bottom: 12px;
  color: #555555;
}

.office-info ul {
  list-style: none;
  margin-left: 0;
}

.office-info ul li {
  padding: 12px 20px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 12px;
  color: #555555;
  background-color: #FFF8F0;
  border-radius: 8px;
}

.office-info ul li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #4A90E2;
  font-weight: 700;
  font-size: 18px;
}

/* Content Pages (Legal) */
.content {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content h2 {
  color: #1E3A5F;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #F0F0F0;
}

.content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content h3 {
  color: #4A90E2;
  margin-top: 24px;
  margin-bottom: 16px;
}

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

.content ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #555555;
}

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

/* Confirmation/Thank You Pages */
.confirmation, .what-next, .testimonial {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 60px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.confirmation h2, .what-next h2 {
  color: #1E3A5F;
  margin-bottom: 24px;
}

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

.confirmation h3 {
  color: #4A90E2;
  margin-top: 40px;
  margin-bottom: 20px;
}

.confirmation ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 32px;
}

.confirmation ol li {
  padding: 12px 0;
  color: #555555;
  font-size: 16px;
}

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

.what-next ul li {
  margin-bottom: 16px;
}

.what-next ul li a {
  display: block;
  padding: 16px 24px;
  background-color: #FFF8F0;
  border-radius: 12px;
  color: #1E3A5F;
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid #F39C12;
}

.what-next ul li a:hover {
  background-color: #FFE4B5;
  transform: translateX(8px);
  color: #4A90E2;
}

/* Footer */
footer {
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
}

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

.footer-section {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-section h3 {
  color: #F39C12;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #CCCCCC;
  margin-bottom: 12px;
  line-height: 1.7;
}

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

.footer-nav a {
  color: #CCCCCC;
  transition: all 0.3s ease;
  padding: 8px 0;
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #CCCCCC;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-radius: 30px 30px 0 0;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: #FFFFFF;
  font-size: 15px;
}

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

.cookie-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #E67E22;
  transform: scale(1.05);
}

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

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

.cookie-settings {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.cookie-settings:hover {
  background-color: rgba(243, 156, 18, 0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-category {
  background-color: #FFF8F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #4A90E2;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background-color: #CCCCCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #4A90E2;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 150px;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: #4A90E2;
  color: #FFFFFF;
}

.cookie-save:hover {
  background-color: #357ABD;
}

.cookie-modal-close {
  background-color: #CCCCCC;
  color: #333333;
}

.cookie-modal-close:hover {
  background-color: #AAAAAA;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature {
    flex: 1 1 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
    border-radius: 0 0 30px 30px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn-primary, .btn-secondary, .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Trust badges stack on mobile */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Service cards full width */
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Features full width */
  .feature {
    flex: 1 1 100%;
  }
  
  /* Stats full width */
  .stat {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Milestones adjust */
  .milestone {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Contact methods full width */
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent adjustments */
  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie modal adjustments */
  .cookie-modal {
    padding: 10px;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* CTA section adjustments */
  .cta-section {
    padding: 60px 20px;
    border-radius: 20px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  /* Section padding adjustments */
  section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .services-preview, .services-detailed, .features, .company-story,
  .mission-vision, .domestic-coverage, .international-coverage,
  .pricing-overview, .pricing-tables, .volume-discounts,
  .contact-methods, .contact-info, .office-info, .content {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Even smaller mobile adjustments */
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .price-table {
    padding: 30px 20px;
  }
  
  .stat strong {
    font-size: 36px;
  }
}

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

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

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

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-consent, .cookie-modal {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .hero {
    background: #1E3A5F;
    color: #000000;
  }
}