/* =================================================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =================================================================
   TYPOGRAPHY - Professional Corporate Style
   ================================================================= */

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

h1 {
  font-size: 48px;
  font-weight: 800;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

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

/* =================================================================
   CONTAINER & LAYOUT
   ================================================================= */

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

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

/* =================================================================
   BUTTONS - Professional Corporate Style
   ================================================================= */

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

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

.btn-primary:hover {
  background-color: #2c5f8d;
  border-color: #2c5f8d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.3);
}

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

.btn-secondary:hover {
  background-color: #1a3a5c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}

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

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #1a3a5c;
}

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

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.tagline {
  font-size: 12px;
  color: #6c757d;
  font-style: italic;
}

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

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #1a3a5c;
  background-color: #f0f4f8;
}

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

/* =================================================================
   MOBILE MENU - Hamburger Navigation
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background-color: #1a3a5c;
  color: #ffffff;
  font-size: 24px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #e74c3c;
  color: #ffffff;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.mobile-nav a:hover {
  background-color: #1a3a5c;
  color: #ffffff;
  transform: translateX(8px);
}

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

.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

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

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

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

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

.hero-cta .btn-secondary{
	color: #fff
}

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

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* =================================================================
   PAGE HERO (Internal Pages)
   ================================================================= */

.page-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8d 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #bacdd9;
}

.breadcrumbs a {
  color: #bacdd9;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

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

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

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

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

.benefit-card {
  flex: 1 1 280px;
  max-width: 300px;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #1a3a5c;
}

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

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

/* =================================================================
   PRODUCTS SECTION
   ================================================================= */

.products-showcase,
.products {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.products-showcase h2,
.products h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.product-grid,
.product-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.product-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 58, 92, 0.2);
  border-color: #2c5f8d;
}

.product-card.featured {
  border-color: #1a3a5c;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #c0392b;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 20px;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #c0392b;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.product-card p {
  font-size: 15px;
  color: #4a5568;
  flex-grow: 1;
}

.product-card .btn {
  width: 100%;
  margin-top: 8px;
}

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

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

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

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

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 300px;
  max-width: 360px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature-item h3 {
  font-size: 20px;
  color: #1a3a5c;
}

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

/* =================================================================
   TESTIMONIALS & REVIEWS - READABLE DESIGN
   ================================================================= */

.testimonials,
.featured-reviews,
.all-reviews {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.testimonials h2,
.featured-reviews h2,
.all-reviews h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid,
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card,
.review-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #ffffff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
}

.review-card.featured {
  border-color: #1a3a5c;
}

.review-rating {
  font-size: 20px;
  color: #f39c12;
  margin-bottom: 8px;
}

.testimonial-card p,
.review-card .review-text {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  font-style: italic;
}

.author,
.review-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a5c;
  margin-top: 8px;
}

.review-product {
  font-size: 13px;
  color: #6c757d;
  font-weight: 600;
}

.review-meta,
.review-date {
  font-size: 13px;
  color: #95a5a6;
}

.rating,
.rating-overview {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a3a5c;
  margin-top: 24px;
}

.reviews-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* =================================================================
   RATING BREAKDOWN
   ================================================================= */

.rating-breakdown {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.rating-stats {
  max-width: 600px;
  margin: 0 auto 32px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.rating-bar span:first-child {
  min-width: 80px;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}

.bar {
  flex: 1;
  height: 12px;
  background-color: #e9ecef;
  border-radius: 6px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #1a3a5c 0%, #2c5f8d 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.rating-bar span:last-child {
  min-width: 80px;
  text-align: right;
  font-size: 14px;
  color: #6c757d;
}

.rating-categories {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.rating-categories p {
  font-size: 15px;
  color: #2c3e50;
  font-weight: 600;
}

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

.cta-banner,
.cta-section,
.contact-cta,
.support-cta,
.write-review-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5f8d 100%);
  color: #ffffff;
  text-align: center;
}

.cta-banner h2,
.cta-section h2,
.contact-cta h2,
.support-cta h2,
.write-review-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p,
.contact-cta p,
.support-cta p,
.write-review-cta p {
  color: #bacdd9;
  margin-bottom: 24px;
  font-size: 18px;
}

.cta-buttons,
.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-info {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.incentive {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
}

/* =================================================================
   COMPARISON TABLE
   ================================================================= */

.comparison {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.comparison-table {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1000px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

thead {
  background-color: #1a3a5c;
  color: #ffffff;
}

thead th {
  padding: 16px 12px;
  font-weight: 700;
  text-align: left;
  font-size: 14px;
}

tbody tr {
  border-bottom: 1px solid #e9ecef;
}

tbody tr:hover {
  background-color: #f8f9fa;
}

tbody td {
  padding: 16px 12px;
  font-size: 14px;
  color: #2c3e50;
}

tbody td:first-child {
  font-weight: 600;
  color: #1a3a5c;
}

/* =================================================================
   BUYING GUIDE & STEPS
   ================================================================= */

.buying-guide,
.quick-start {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.buying-guide h2,
.quick-start h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 28px 24px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #2c5f8d;
}

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

.step p {
  font-size: 14px;
  color: #4a5568;
}

/* =================================================================
   INSTRUCTIONS & ACCORDION
   ================================================================= */

.instructions,
.tips,
.safety {
  padding: 60px 20px;
  background-color: #ffffff;
}

.instructions h2,
.tips h2,
.safety h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.accordion-item {
  margin-bottom: 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.accordion-item h3 {
  padding: 20px 24px;
  background-color: #f8f9fa;
  cursor: pointer;
  font-size: 18px;
  color: #1a3a5c;
  transition: all 0.3s ease;
}

.accordion-item h3:hover {
  background-color: #e9ecef;
}

.accordion-content {
  padding: 20px 24px;
  display: none;
}

.accordion-content p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.7;
}

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

.tip-card {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 28px 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #2c5f8d;
}

.tip-card h3 {
  font-size: 18px;
  color: #1a3a5c;
  margin-bottom: 12px;
}

.tip-card p {
  font-size: 14px;
  color: #4a5568;
}

.safety-list {
  max-width: 800px;
  margin: 0 auto;
}

.safety-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background-color: #f8f9fa;
  border-left: 4px solid #c0392b;
  border-radius: 4px;
  font-size: 15px;
  color: #2c3e50;
}

/* =================================================================
   STORY & CONTENT SECTIONS
   ================================================================= */

.story,
.mission-vision,
.values,
.stats,
.certifications {
  padding: 60px 20px;
}

.story {
  background-color: #ffffff;
}

.mission-vision {
  background-color: #f8f9fa;
}

.values,
.certifications {
  background-color: #ffffff;
}

.stats {
  background-color: #f8f9fa;
}

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

.content-wrapper h2 {
  margin-bottom: 24px;
}

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

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.column {
  flex: 1 1 400px;
  max-width: 500px;
}

.column h2 {
  margin-bottom: 16px;
}

.column p {
  font-size: 16px;
  color: #4a5568;
}

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

.value-card,
.cert-item {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 28px 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover,
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #2c5f8d;
}

.value-card h3,
.cert-item h3 {
  font-size: 18px;
  color: #1a3a5c;
  margin-bottom: 12px;
}

.value-card p,
.cert-item p {
  font-size: 14px;
  color: #4a5568;
}

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

.stat-card,
.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #1a3a5c;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-card p:last-child,
.stat-item p:last-child {
  font-size: 16px;
  color: #4a5568;
  font-weight: 600;
}

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

.contact-methods,
.office-hours,
.faq-contact,
.trust-section {
  padding: 60px 20px;
}

.contact-methods {
  background-color: #ffffff;
}

.office-hours {
  background-color: #f8f9fa;
}

.faq-contact {
  background-color: #ffffff;
}

.trust-section {
  background-color: #f8f9fa;
}

.contact-methods h2,
.office-hours h2,
.faq-contact h2,
.trust-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-card,
.trust-card {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 32px 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #2c5f8d;
}

.contact-card h3,
.trust-card h3 {
  font-size: 18px;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.contact-card p,
.trust-card p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 8px;
}

.contact-card strong,
.trust-card strong {
  color: #1a3a5c;
}

/* =================================================================
   CONTACT FORM SECTION
   ================================================================= */

.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

.form-description {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #1a3a5c;
}

.form-description p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 8px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.input-placeholder,
.textarea-placeholder,
.select-placeholder {
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 15px;
  color: #95a5a6;
  background-color: #f8f9fa;
}

.textarea-placeholder {
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4a5568;
  cursor: not-allowed;
}

.form-button {
  margin-top: 16px;
}

.form-button .btn {
  width: 100%;
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 13px;
  color: #6c757d;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

.order-info {
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.order-info p {
  max-width: 800px;
  margin: 0 auto 12px;
}

.order-info strong {
  color: #1a3a5c;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e9ecef;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: #2c3e50;
}

.hours-row span:last-child {
  color: #4a5568;
}

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

.map-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.map-placeholder {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #f8f9fa;
  border: 2px dashed #bacdd9;
  border-radius: 12px;
  text-align: center;
}

.map-placeholder p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 12px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #1a3a5c;
}

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

.faq-item p {
  font-size: 15px;
  color: #4a5568;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  color: #27ae60;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.confirmation,
.next-steps,
.contact-reminder,
.social-proof {
  padding: 60px 20px;
}

.confirmation {
  background-color: #ffffff;
}

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

.contact-reminder {
  background-color: #ffffff;
}

.social-proof {
  background-color: #f8f9fa;
}

.confirmation h2,
.next-steps h2,
.contact-reminder h2,
.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 28px 24px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
}

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

.timeline-step p {
  font-size: 14px;
  color: #4a5568;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px 24px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 58, 92, 0.15);
  border-color: #2c5f8d;
}

.action-card h3 {
  font-size: 20px;
  color: #1a3a5c;
}

.action-card p {
  font-size: 15px;
  color: #4a5568;
  flex-grow: 1;
}

.contact-reminder p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 12px;
}

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

.cta-buttons {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}

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

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

.legal-page .content-wrapper {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.last-updated {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 32px;
  font-style: italic;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a3a5c;
  padding-top: 16px;
  border-top: 2px solid #e9ecef;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.legal-page a {
  color: #2c5f8d;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #1a3a5c;
}

.legal-page strong {
  color: #1a3a5c;
  font-weight: 700;
}

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

footer {
  background-color: #1a3a5c;
  color: #bacdd9;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
  max-width: 250px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

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

.footer-column a {
  color: #bacdd9;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-contact {
  border-top: 1px solid rgba(186, 205, 217, 0.2);
  border-bottom: 1px solid rgba(186, 205, 217, 0.2);
  padding: 24px 0;
  margin-bottom: 24px;
  text-align: center;
}

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

.footer-bottom {
  text-align: center;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a3a5c;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-consent.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 400px;
}

.cookie-text p {
  font-size: 14px;
  color: #bacdd9;
  margin-bottom: 8px;
}

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-accept {
  background-color: #27ae60;
  color: #ffffff;
}

.btn-accept:hover {
  background-color: #2ecc71;
}

.btn-reject {
  background-color: #c0392b;
  color: #ffffff;
}

.btn-reject:hover {
  background-color: #e74c3c;
}

.btn-settings {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #e74c3c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

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

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

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

.cookie-toggle.active {
  background-color: #27ae60;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #4a5568;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* =================================================================
   RESPONSIVE DESIGN - Mobile First
   ================================================================= */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 12px 0;
  }
  
  .logo img {
    width: 140px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Page hero */
  .page-hero {
    padding: 40px 20px 24px;
  }
  
  /* Sections */
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* Grid layouts */
  .benefit-grid,
  .product-grid,
  .product-grid-full,
  .feature-row,
  .testimonial-grid,
  .reviews-grid,
  .guide-steps,
  .steps-grid,
  .tips-grid,
  .value-grid,
  .cert-grid,
  .stats-grid,
  .contact-grid,
  .trust-grid,
  .action-cards,
  .timeline {
    gap: 16px;
  }
  
  /* Cards */
  .benefit-card,
  .product-card,
  .feature-item,
  .testimonial-card,
  .review-card,
  .step,
  .tip-card,
  .value-card,
  .cert-item,
  .stat-card,
  .contact-card,
  .trust-card,
  .action-card,
  .timeline-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Two column layouts */
  .two-column {
    flex-direction: column;
    gap: 24px;
  }
  
  .column {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Tables */
  .comparison-table {
    font-size: 12px;
  }
  
  thead th,
  tbody td {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 auto;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* Stat numbers */
  .stat-number {
    font-size: 36px;
  }
  
  /* Forms */
  .form-description {
    padding: 16px;
  }
  
  /* Maps */
  .map-placeholder {
    padding: 40px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .benefit-card,
  .product-card,
  .feature-item,
  .testimonial-card,
  .review-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

.slide-in-up {
  animation: slideInUp 0.6s ease;
}

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

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

button:focus,
a:focus {
  outline: 2px solid #2c5f8d;
  outline-offset: 2px;
}

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

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

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}