/* ========================================
   MELLOW FLORA IMMOBILIEN - SCANDINAVIAN CLEAN DESIGN
   Modern, Light, Functional, Natural
   ======================================== */

/* ========================================
   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: #2d3436;
  background-color: #fafafa;
  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 {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY - SCANDINAVIAN CLEAN
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: #2C5F4F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #636e72;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(44, 95, 79, 0.05);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin-left: 32px;
  color: #2d3436;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #2C5F4F;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  position: relative;
  z-index: 101;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #f8f9fa;
  border-color: #2C5F4F;
}

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

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

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: #2C5F4F;
  background-color: transparent;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #f8f9fa;
  border-color: #2C5F4F;
}

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

.mobile-nav a {
  padding: 12px 16px;
  color: #2d3436;
  font-size: 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F4F;
  border-left-color: #2C5F4F;
  background-color: #f8f9fa;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 24px;
  color: #2C5F4F;
}

.hero p {
  font-size: 18px;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.breadcrumb a {
  color: #2C5F4F;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #8B7355;
}

/* ========================================
   BUTTONS - SCANDINAVIAN MINIMAL
   ======================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #2C5F4F;
  color: #ffffff;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background-color: #234d3f;
  border-color: #234d3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.2);
}

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

.btn-secondary:hover {
  background-color: #2C5F4F;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 79, 0.2);
}

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

/* ========================================
   TRUST BADGES & INDICATORS
   ======================================== */
.trust-badges,
.key-stats,
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.trust-badges span,
.key-stats span,
.benefits-list span {
  padding: 8px 16px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 14px;
  color: #2d3436;
  white-space: nowrap;
}

/* ========================================
   GRID LAYOUTS - FLEXBOX ONLY
   ======================================== */
.benefits-grid,
.services-grid,
.districts-grid,
.packages-grid,
.categories-grid,
.guides-grid,
.team-grid,
.stats-grid,
.options-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit,
.service-card,
.district-card,
.package,
.category,
.guide-card,
.team-member,
.stat,
.option,
.resource {
  flex: 1 1 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  padding: 32px;
  transition: all 0.3s ease;
  min-width: 280px;
  position: relative;
}

.benefit:hover,
.service-card:hover,
.district-card:hover,
.package:hover,
.category:hover,
.guide-card:hover,
.team-member:hover,
.option:hover,
.resource:hover {
  border-color: #2C5F4F;
  box-shadow: 0 8px 24px rgba(44, 95, 79, 0.1);
  transform: translateY(-4px);
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.step,
.process-phase {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-left: 4px solid #E8D5C4;
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.process-phase:hover {
  border-left-color: #2C5F4F;
  box-shadow: 0 4px 16px rgba(44, 95, 79, 0.1);
}

.step-number,
.phase-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #E8D5C4;
  font-weight: 400;
  margin-bottom: 12px;
}

.duration {
  display: inline-block;
  padding: 4px 12px;
  background-color: #f8f9fa;
  color: #8B7355;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.step ul,
.process-phase ul {
  margin-top: 16px;
  margin-left: 20px;
}

.step li,
.process-phase li {
  color: #636e72;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.step li::before,
.process-phase li::before {
  content: '•';
  color: #2C5F4F;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

/* ========================================
   SERVICE CARDS WITH PRICING
   ======================================== */
.service-card.featured,
.package.featured {
  border-color: #2C5F4F;
  border-width: 2px;
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background-color: #2C5F4F;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 2px;
  font-weight: 500;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #2C5F4F;
  margin: 16px 0;
  display: block;
}

.highlight,
.ideal,
.success-rate,
.value,
.advantage {
  display: inline-block;
  padding: 6px 12px;
  background-color: #E8D5C4;
  color: #2C5F4F;
  font-size: 13px;
  border-radius: 2px;
  margin-top: 12px;
}

/* ========================================
   DISTRICT CARDS
   ======================================== */
.district-card h3 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

.tagline {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 16px;
}

.avg-price {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #2C5F4F;
  margin: 16px 0 8px;
}

.trend {
  font-size: 14px;
  color: #27ae60;
  font-weight: 500;
}

.features {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features li {
  font-size: 14px;
  color: #636e72;
  padding-left: 20px;
}

.scores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.scores span {
  font-size: 13px;
  color: #8B7355;
  padding: 4px 8px;
  background-color: #f8f9fa;
  border-radius: 2px;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
  margin: 60px 0;
  padding: 40px 20px;
  background-color: #ffffff;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: #ffffff;
}

thead {
  background-color: #f8f9fa;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 500;
  color: #2C5F4F;
  border-bottom: 2px solid #e8e8e8;
  font-size: 14px;
}

td {
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #636e72;
  font-size: 14px;
}

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

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials,
.testimonials-extended {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 60px 0;
}

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

.testimonial-card {
  flex: 1 1 100%;
  background-color: #ffffff;
  border-left: 4px solid #2C5F4F;
  padding: 32px;
  border-radius: 2px;
  min-width: 280px;
  position: relative;
}

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

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #8B7355;
  font-size: 14px;
}

.author strong {
  color: #2C5F4F;
  font-weight: 500;
}

.rating {
  color: #f39c12;
  font-size: 16px;
  margin-top: 8px;
}

/* ========================================
   STATISTICS
   ======================================== */
.trust-indicators {
  background-color: #2C5F4F;
  color: #ffffff;
  padding: 60px 20px;
  margin: 60px 0;
  text-align: center;
}

.trust-indicators h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

.stats-grid {
  justify-content: center;
}

.stat {
  flex: 1 1 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px;
  text-align: center;
  min-width: 200px;
}

.stat:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.stat .number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #E8D5C4;
  margin-bottom: 8px;
  font-weight: 400;
}

.stat .label {
  display: block;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}

/* ========================================
   FAQ SECTIONS
   ======================================== */
.faq,
.faq-comprehensive,
.faq-contact {
  padding: 60px 20px;
  background-color: #ffffff;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h3 {
  color: #2C5F4F;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8D5C4;
}

.faq-item {
  background-color: #f8f9fa;
  padding: 24px;
  margin-bottom: 16px;
  border-left: 3px solid #E8D5C4;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #2C5F4F;
  box-shadow: 0 2px 8px rgba(44, 95, 79, 0.1);
}

.faq-item h3,
.faq-item h4 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #636e72;
  line-height: 1.7;
}

/* ========================================
   CONTACT FORMS & INFO
   ======================================== */
.contact-options,
.office-info,
.office-location {
  padding: 60px 20px;
  background-color: #ffffff;
}

.office-details,
.office-info .office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.detail-block {
  flex: 1 1 280px;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 2px;
}

.detail-block h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

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

.form-container {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.form-note {
  text-align: center;
  font-size: 16px;
  color: #2C5F4F;
  margin-bottom: 24px;
}

.form-fields-info {
  margin-top: 24px;
}

.form-fields-info ul {
  margin-left: 20px;
  margin-top: 12px;
}

.form-fields-info li {
  color: #636e72;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.form-fields-info li::before {
  content: '•';
  color: #2C5F4F;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

.response-promise {
  text-align: center;
  font-weight: 500;
  color: #2C5F4F;
  margin-top: 24px;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */
.legal-content {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

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

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

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

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #636e72;
  padding-left: 20px;
  position: relative;
}

.legal-content li::before {
  content: '•';
  color: #2C5F4F;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

/* ========================================
   THANK YOU PAGES
   ======================================== */
.thank-you-hero,
.thank-you-content {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.confirmation-text {
  color: #27ae60;
  font-weight: 500;
}

.next-steps,
.while-you-wait {
  padding: 60px 20px;
  background-color: #ffffff;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.steps-grid .step {
  flex: 1 1 250px;
  border-left: 4px solid #E8D5C4;
}

.timeline-note {
  text-align: center;
  margin-top: 32px;
  font-weight: 500;
  color: #8B7355;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-final,
.cta-section,
.stadtteil-analyse-cta {
  background-color: #2C5F4F;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-final h2,
.cta-section h2,
.stadtteil-analyse-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p,
.stadtteil-analyse-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 32px;
}

.trust-note {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.service-box {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 2px;
  text-align: left;
}

.service-box h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-box p {
  color: #636e72;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background-color: #2d3436;
  color: #dfe6e9;
  padding: 60px 20px 20px;
}

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

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

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

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

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

.footer-col a {
  color: #b2bec3;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #E8D5C4;
}

.footer-legal {
  padding-top: 32px;
  border-top: 1px solid #4a4a4a;
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.legal-links a {
  font-size: 13px;
  color: #b2bec3;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #E8D5C4;
}

.footer-legal p {
  font-size: 13px;
  color: #636e72;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

#cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 300px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background-color: #2C5F4F;
  color: #ffffff;
  border-color: #2C5F4F;
}

.cookie-accept:hover {
  background-color: #234d3f;
}

.cookie-reject {
  background-color: transparent;
  color: #636e72;
  border-color: #e8e8e8;
}

.cookie-reject:hover {
  border-color: #636e72;
}

.cookie-settings {
  background-color: transparent;
  color: #2C5F4F;
  border-color: #2C5F4F;
}

.cookie-settings:hover {
  background-color: #2C5F4F;
  color: #ffffff;
}

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

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

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

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #2C5F4F;
  margin: 0;
}

.cookie-close {
  font-size: 24px;
  color: #636e72;
  background: none;
  border: none;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

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

.cookie-category h4 {
  color: #2C5F4F;
  margin-bottom: 8px;
}

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

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

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

.cookie-toggle label {
  cursor: pointer;
  color: #2d3436;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

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

  .benefit,
  .service-card,
  .district-card,
  .package,
  .category,
  .guide-card,
  .option,
  .resource {
    flex: 1 1 calc(50% - 24px);
  }

  .stat {
    flex: 1 1 calc(25% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .cta-buttons {
    gap: 20px;
  }

  .process-steps {
    gap: 40px;
  }
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  .benefit,
  .category,
  .guide-card,
  .option,
  .resource {
    flex: 1 1 calc(33.333% - 24px);
  }

  .service-card,
  .district-card,
  .package {
    flex: 1 1 calc(33.333% - 24px);
  }

  .team-member {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-col {
    flex: 1 1 calc(25% - 24px);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

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

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

.hidden {
  display: none;
}

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

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

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}