/* ===========================
   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: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

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

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

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 24px 24px;
}

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

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

.mobile-menu-close:hover {
  background: #F4F4F4;
  color: #2C5F8D;
}

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

.mobile-nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid #F4F4F4;
  transition: all 0.3s ease;
}

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

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

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

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

.btn-primary:hover {
  background: #234a6d;
  border-color: #234a6d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.2);
}

.btn-link {
  color: #2C5F8D;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.btn-link:hover {
  color: #E8922C;
}

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

.hero {
  background: linear-gradient(135deg, #F4F4F4 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 0;
}

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

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

.hero-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.search-input,
.search-select {
  flex: 1 1 200px;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.search-input:focus,
.search-select:focus {
  outline: none;
  border-color: #2C5F8D;
  box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

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

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  font-size: 14px;
  color: #666666;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   BREADCRUMBS
   =========================== */

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

.breadcrumbs a {
  color: #2C5F8D;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
  background: #F4F4F4;
  padding: 48px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.page-header .subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 0;
}

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

.step {
  font-size: 14px;
  color: #999999;
  padding: 8px 16px;
  border-radius: 20px;
  background: #FFFFFF;
  position: relative;
}

.step.active {
  color: #2C5F8D;
  font-weight: 600;
  background: #E8F4FF;
}

/* ===========================
   CARDS & GRIDS
   =========================== */

.category-grid,
.features-grid,
.pricing-grid,
.stats-grid,
.testimonial-grid,
.benefits-grid,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.category-card,
.feature-card,
.pricing-card,
.stat-card,
.testimonial-card,
.benefit-card,
.service-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.category-card:hover,
.feature-card:hover,
.pricing-card:hover,
.benefit-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #2C5F8D;
}

.category-card img,
.feature-card img,
.benefit-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.category-card h3,
.feature-card h3,
.pricing-card h3,
.stat-card h3 {
  margin-bottom: 8px;
}

.category-card p,
.feature-card p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 16px;
}

.category-card a {
  color: #2C5F8D;
  font-weight: 600;
  font-size: 14px;
}

.category-card a:hover {
  color: #E8922C;
}

/* ===========================
   PRICING CARDS
   =========================== */

.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: #2C5F8D;
  border-width: 2px;
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E8922C;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 16px 0;
}

.pricing-card .period {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.features-list {
  text-align: left;
  margin: 24px 0;
}

.features-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #666666;
  border-bottom: 1px solid #F4F4F4;
}

.features-list li:last-child {
  border-bottom: none;
}

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

.statistics,
.statistics-about {
  background: #F4F4F4;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.stat-card {
  background: #FFFFFF;
  text-align: center;
  padding: 40px 24px;
}

.stat-card h3 {
  font-size: 48px;
  color: #2C5F8D;
  margin-bottom: 8px;
}

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

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

.testimonials {
  background: #F4F4F4;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  text-align: left;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating {
  color: #E8922C;
  font-size: 18px;
}

.testimonial-count {
  margin-top: 32px;
  font-size: 14px;
  color: #666666;
}

/* ===========================
   CTA BANNER
   =========================== */

.cta-banner {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4161 100%);
  padding: 80px 20px;
  margin-bottom: 0;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

.cta-banner .btn-primary {
  background: #E8922C;
  border-color: #E8922C;
}

.cta-banner .btn-primary:hover {
  background: #d17b1f;
  border-color: #d17b1f;
}

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

.cta-banner .btn-secondary:hover {
  background: #FFFFFF;
  color: #2C5F8D;
}

.promo,
.trust-indicator {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 0;
}

/* ===========================
   SEARCH INTERFACE
   =========================== */

.search-interface {
  padding: 40px 20px;
  background: #F4F4F4;
  margin-bottom: 40px;
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-input-main {
  flex: 1 1 300px;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.filter-select {
  padding: 10px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
}

/* ===========================
   SEARCH RESULTS
   =========================== */

.search-results {
  padding: 40px 20px;
}

.search-results .container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.results-controls {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.sort-select {
  padding: 10px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
}

.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  padding: 8px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.filters-sidebar {
  flex: 0 0 280px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

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

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F4F4F4;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333333;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  cursor: pointer;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
  cursor: pointer;
}

.filter-group input[type="text"],
.filter-group input[type="number"],
.filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.filters-sidebar .btn {
  width: 100%;
  margin-bottom: 12px;
}

.listings-grid {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.listing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.listing-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
}

.listing-card .badge.premium {
  background: #E8922C;
}

.listing-card .badge.vip {
  background: #2C5F8D;
}

.listing-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #E0E0E0 0%, #F4F4F4 100%);
}

.listing-card h3 {
  font-size: 18px;
  margin: 16px 16px 8px;
  color: #1a1a1a;
}

.listing-card .location {
  font-size: 14px;
  color: #666666;
  margin: 0 16px 8px;
}

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

.listing-details {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid #F4F4F4;
  font-size: 14px;
  color: #666666;
  flex-wrap: wrap;
}

.btn-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-favorite:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  transform: scale(1.1);
}

/* ===========================
   PAGINATION
   =========================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover {
  background: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

/* ===========================
   FORMS
   =========================== */

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 40px 32px;
}

.form-wrapper h2 {
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
  font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2C5F8D;
  box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
}

.form-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}

.form-note {
  font-size: 13px;
  color: #666666;
  margin-top: 8px;
  margin-bottom: 0;
}

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

.contact-grid,
.contact-methods .contact-grid,
.help-options,
.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-card,
.help-card,
.department-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover,
.help-card:hover,
.department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #2C5F8D;
}

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

.contact-card h3 {
  margin-bottom: 12px;
}

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

.help-card {
  text-align: left;
}

.location-details {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 300px;
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.map-placeholder {
  flex: 1 1 400px;
  min-height: 400px;
  background: #F4F4F4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #E0E0E0;
}

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

.legal-content {
  padding: 40px 20px;
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #333333;
}

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

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

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-wrapper a {
  color: #2C5F8D;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #E8922C;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F4F4F4 0%, #FFFFFF 100%);
}

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

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

.success-message {
  font-size: 20px;
  color: #666666;
  margin-bottom: 32px;
}

.confirmation-details {
  background: #F4F4F4;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.confirmation-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

.next-step {
  font-size: 16px;
  color: #2C5F8D;
  font-weight: 600;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2C5F8D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

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

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #2C5F8D;
}

.link-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.link-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.link-card p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

/* ===========================
   SPECIAL SECTIONS
   =========================== */

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

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

.guarantees {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.guarantees .badge {
  background: #28a745;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.payment-icons span {
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #2C5F8D;
}

.faq-item p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 999;
  display: none;
  border-top: 3px solid #2C5F8D;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

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

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

.cookie-banner-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

.cookie-banner-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: #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;
  border-radius: 50%;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

.cookie-preferences {
  margin: 24px 0;
}

.cookie-toggle {
  padding: 16px 0;
  border-bottom: 1px solid #F4F4F4;
}

.cookie-toggle:last-child {
  border-bottom: none;
}

.cookie-toggle label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
}

.cookie-toggle p {
  font-size: 14px;
  color: #666666;
  margin-left: 32px;
  margin-bottom: 0;
}

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

.site-footer {
  background: #1a1a1a;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

.footer-column p {
  font-size: 14px;
  color: #B0B0B0;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: #B0B0B0;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #E8922C;
  padding-left: 4px;
}

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

.footer-bottom p {
  font-size: 14px;
  color: #B0B0B0;
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Hero Section */
  .hero {
    padding: 48px 20px;
  }

  .hero-search {
    flex-direction: column;
  }

  .search-input,
  .search-select {
    flex: 1 1 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* Cards */
  .category-card,
  .feature-card,
  .pricing-card,
  .stat-card,
  .testimonial-card,
  .benefit-card,
  .service-card,
  .contact-card,
  .help-card,
  .department-card,
  .step-card,
  .link-card {
    flex: 1 1 100%;
  }

  /* Search Results */
  .search-results .container {
    flex-direction: column;
  }

  .filters-sidebar {
    flex: 1 1 100%;
    position: static;
  }

  .listing-card {
    flex: 1 1 100%;
  }

  /* Forms */
  .form-row {
    flex-direction: column;
  }

  .form-row .form-group {
    flex: 1 1 100%;
  }

  /* Contact */
  .location-details {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-banner-buttons .btn {
    flex: 1;
  }

  /* Stats & Features */
  .statistics,
  .statistics-about,
  .testimonials {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  .section {
    padding: 40px 16px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .pricing-card .price {
    font-size: 28px;
  }

  .stat-card h3 {
    font-size: 36px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .payment-icons {
    flex-direction: column;
    gap: 12px;
  }

  .payment-icons span {
    text-align: center;
  }
}

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

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

.category-card,
.feature-card,
.pricing-card,
.stat-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

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

:focus-visible {
  outline: 3px solid #2C5F8D;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #2C5F8D;
  outline-offset: 2px;
}

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