/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #FAF8F5;
  overflow-x: hidden;
}

/* Typography - Elegant Classic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1A2B4A;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

a:hover {
  color: #A88B4E;
  text-decoration: underline;
}

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

li {
  margin-bottom: 8px;
  color: #4A4A4A;
}

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

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

/* Header Styles */
header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #E8E4DB;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(26, 43, 74, 0.08);
}

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

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

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

.main-nav a {
  color: #1A2B4A;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C9A961;
  border-bottom-color: #C9A961;
  text-decoration: none;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  background-color: #1A2B4A;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 43, 74, 0.2);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 150;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(26, 43, 74, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #1A2B4A;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #E8E4DB;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  padding-left: 12px;
  text-decoration: none;
}

/* Buttons - Elegant Classic Style */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #1A2B4A;
  color: #FFFFFF;
  border-color: #1A2B4A;
}

.btn-primary:hover {
  background-color: #C9A961;
  border-color: #C9A961;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background-color: #1A2B4A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 43, 74, 0.2);
  text-decoration: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1A2B4A 0%, #2C4166 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-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
  pointer-events: none;
}

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

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

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  font-size: 14px;
  color: #C9A961;
  font-style: italic;
  margin-top: 16px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(to bottom, #F4F1EA 0%, #FFFFFF 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 2px solid #E8E4DB;
}

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

.page-hero p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto 16px;
}

.emotional-copy {
  font-style: italic;
  color: #C9A961;
  font-size: 16px;
}

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

.breadcrumb a {
  color: #1A2B4A;
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

/* Grid Layouts - FLEXBOX ONLY */
.services-grid, .categories-grid, .vehicles-grid, .features-grid,
.benefits-grid, .reasons-grid, .packages-grid, .use-cases-grid,
.process-steps, .contacts-list, .team-contacts, .standards-grid,
.values-grid, .qualities-grid, .indicators-grid, .links-grid,
.resources-grid, .events-grid, .transfer-prices, .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* Cards - Elegant Classic Style */
.service-card, .category-card, .vehicle-card, .feature,
.benefit, .reason, .package-card, .use-case, .step,
.testimonial-card, .event-card, .indicator, .link-card,
.contact-method, .standard, .value, .quality, .faq-item {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 0;
  border: 1px solid #E8E4DB;
  box-shadow: 0 2px 8px rgba(26, 43, 74, 0.06);
  transition: all 0.3s ease;
  position: relative;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
}

.service-card::before, .vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #C9A961;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover, .vehicle-card:hover, .category-card:hover,
.package-card:hover, .link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 43, 74, 0.12);
  border-color: #C9A961;
}

.service-card:hover::before, .vehicle-card:hover::before {
  opacity: 1;
}

.service-card h3, .vehicle-card h3, .category-card h3 {
  color: #1A2B4A;
  margin-bottom: 12px;
}

.service-card p, .vehicle-card p {
  color: #4A4A4A;
  margin-bottom: 16px;
}

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

/* Featured Package Card */
.package-card.featured {
  border: 2px solid #C9A961;
  background: linear-gradient(to bottom, #FFFFFF 0%, #FAF8F5 100%);
  transform: scale(1.02);
}

.package-card.featured h3 {
  color: #C9A961;
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C9A961;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

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

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

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

.rating, .overall-rating, .stats {
  text-align: center;
  font-weight: 600;
  color: #1A2B4A;
  font-size: 18px;
}

/* Features */
.why-choose-us {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.feature {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  border: none;
  background-color: #FAF8F5;
}

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

.feature p {
  font-size: 14px;
  color: #4A4A4A;
}

/* Location Info */
.location-info {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

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

.address-block p {
  margin-bottom: 12px;
  color: #2C2C2C;
}

/* CTA Sections */
.cta-final, .cta-consultation, .cta-custom, .cta-wedding,
.cta-business, .cta-visit, .cta-contact, .cta-thankyou {
  background: linear-gradient(135deg, #1A2B4A 0%, #2C4166 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.cta-final h2, .cta-consultation h2, .cta-custom h2,
.cta-wedding h2, .cta-business h2, .cta-visit h2,
.cta-contact h2, .cta-thankyou h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-final p, .cta-consultation p, .cta-custom p,
.cta-wedding p, .cta-business p, .cta-visit p,
.cta-contact p, .cta-thankyou p {
  color: #F4F1EA;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.response-time, .guarantee, .timeline {
  font-size: 14px;
  color: #C9A961;
  font-style: italic;
  margin-top: 16px;
}

/* FAQ Section */
.faq-section, .faq-contact, .business-faq, .wedding-faq {
  background-color: #FAF8F5;
  padding: 60px 20px;
}

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

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 3px solid #C9A961;
  flex: 1 1 100%;
}

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

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

/* Lists */
.features-list ul, .benefits-list ul, .chauffeur-qualities ul {
  list-style: none;
  margin-left: 0;
}

.features-list li, .benefits-list li, .chauffeur-qualities li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.features-list li::before, .benefits-list li::before,
.chauffeur-qualities li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: bold;
  font-size: 18px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(26, 43, 74, 0.06);
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #E8E4DB;
}

th {
  background-color: #F4F1EA;
  font-weight: 600;
  color: #1A2B4A;
}

tr:hover {
  background-color: #FAF8F5;
}

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

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

.legal-page h1 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8E4DB;
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #1A2B4A 0%, #2C4166 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

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

.subtitle {
  font-size: 18px;
  color: #F4F1EA;
  margin-bottom: 32px;
}

/* Footer */
footer {
  background-color: #1A2B4A;
  color: #F4F1EA;
  padding: 60px 20px 20px;
  margin-top: 0;
}

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

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

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

.footer-col h4 {
  color: #C9A961;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: #E8E4DB;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #C9A961;
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 228, 219, 0.2);
}

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

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A2B4A;
  color: #FFFFFF;
  padding: 24px;
  z-index: 200;
  box-shadow: 0 -4px 16px rgba(26, 43, 74, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #F4F1EA;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: #A88B4E;
  transform: translateY(-2px);
}

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

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

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

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

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 0;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(26, 43, 74, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A2B4A;
  cursor: pointer;
  padding: 4px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #C9A961;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #FAF8F5;
  border-left: 3px solid #C9A961;
}

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

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

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
  .service-card, .vehicle-card, .package-card, .benefit,
  .reason, .use-case {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature {
    flex: 1 1 calc(50% - 32px);
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu button, hide desktop nav */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 16px 0;
    justify-content: center;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* All cards full width on mobile */
  .service-card, .vehicle-card, .category-card, .feature,
  .benefit, .reason, .package-card, .use-case, .testimonial-card,
  .event-card, .standard, .value, .quality, .step {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  
  /* Grids to single column */
  .services-grid, .vehicles-grid, .features-grid, .benefits-grid,
  .reasons-grid, .packages-grid, .testimonials-grid, .events-grid,
  .standards-grid, .values-grid, .process-steps, .cta-buttons {
    flex-direction: column;
  }
  
  /* Footer single column */
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie banner stacked */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Section padding reduced */
  section {
    padding: 40px 16px;
  }
  
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .price {
    font-size: 20px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

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

.service-card, .vehicle-card, .testimonial-card {
  animation: fadeIn 0.6s ease;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

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

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-consent-banner {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Ensure no overlapping elements */
* {
  position: relative;
}

/* Prevent layout shifts */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Clearfix for float issues (if any) */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}