/* ============================================
   SILKEN BREEZE - PROFESSIONAL CORPORATE STYLES
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 20px;
}

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

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

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

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

p {
  margin-bottom: 16px;
  color: #5A6C7D;
}

a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: #95A5A6;
}

ul {
  list-style: none;
}

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

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

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

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

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8DCC4;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

.cta-button {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1a252f;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1000;
  padding: 80px 32px 32px;
  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;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 220, 196, 0.2);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #E8DCC4;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #E8DCC4;
  color: #2C3E50;
}

.btn-primary:hover {
  background-color: #d4c8b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 220, 196, 0.3);
}

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

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

/* BRAND STATEMENT */
.brand-statement {
  padding: 60px 20px;
  background-color: #F8F9FA;
  text-align: center;
  margin-bottom: 60px;
}

.brand-statement h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.brand-statement p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #5A6C7D;
}

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

.values span {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E8DCC4;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  border-color: #2C3E50;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C3E50;
}

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

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #2C3E50;
  margin-top: 16px;
}

.services-overview > a {
  display: block;
  text-align: center;
  margin-top: 32px;
}

/* PROCESS SECTION */
.process {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

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

.step:hover {
  border-color: #2C3E50;
  transform: translateY(-4px);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.step p {
  font-size: 14px;
  color: #5A6C7D;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  border-left: 4px solid #E8DCC4;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: #2C3E50;
  font-size: 14px;
}

/* GRID LAYOUTS */
.grid,
.team-grid,
.principles-grid,
.categories-grid,
.influences-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.project-card,
.team-member,
.principle,
.category-card,
.influence {
  background-color: #FFFFFF;
  border: 1px solid #E8DCC4;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.project-card:hover,
.team-member:hover,
.principle:hover,
.category-card:hover,
.influence:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  border-color: #2C3E50;
}

/* STATS SECTION */
.project-stats {
  padding: 60px 20px;
  background-color: #2C3E50;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
}

.project-stats h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

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

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

/* SERVICE DETAIL */
.service-detail {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.service-detail.alt {
  background-color: #F8F9FA;
}

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

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

.service-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}

.service-content li {
  margin-bottom: 12px;
  color: #5A6C7D;
}

.service-content .price {
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin: 24px 0;
}

/* PHILOSOPHY SECTIONS */
.philosophy-intro,
.design-principles,
.influences,
.sustainability,
.materials {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.philosophy-intro .lead {
  font-size: 22px;
  font-weight: 400;
  color: #2C3E50;
  margin-bottom: 24px;
}

.sustainability-list {
  list-style: none;
  margin-top: 24px;
}

.sustainability-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #5A6C7D;
}

.sustainability-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8DCC4;
  font-weight: 700;
  font-size: 18px;
}

.quote {
  padding: 80px 20px;
  background-color: #2C3E50;
  text-align: center;
  margin-bottom: 60px;
}

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

.quote p {
  font-size: 28px;
  font-style: italic;
  color: #E8DCC4;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* CONTACT SECTIONS */
.contact-intro,
.contact-content,
.studio-visit,
.next-steps,
.trust-signals {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 calc(50% - 48px);
  min-width: 300px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.info-block p {
  color: #5A6C7D;
}

.form-note {
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E8DCC4;
}

.form-note p {
  margin-bottom: 12px;
}

.form-note strong {
  color: #2C3E50;
}

.visit-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.info-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 8px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
}

.trust-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.trust-item p {
  color: #2C3E50;
  font-weight: 500;
}

/* THANK YOU PAGE */
.thank-you-content {
  text-align: center;
  padding: 40px 20px;
}

.confirmation {
  padding: 60px 20px;
  background-color: #F8F9FA;
  margin-bottom: 60px;
}

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

.confirmation .note {
  text-align: center;
  margin-top: 32px;
  font-style: italic;
  color: #5A6C7D;
}

.meanwhile,
.explore {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.meanwhile h2,
.explore h2 {
  text-align: center;
  margin-bottom: 48px;
}

.suggestions-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.suggestion,
.explore-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #E8DCC4;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion:hover,
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  border-color: #2C3E50;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.last-updated {
  color: #95A5A6;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #5A6C7D;
}

.expertise-list {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
}

.expertise-list li {
  padding: 16px;
  background-color: #F8F9FA;
  margin-bottom: 12px;
  border-radius: 4px;
  border-left: 4px solid #E8DCC4;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  text-align: center;
  margin-bottom: 60px;
}

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

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

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

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

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

.footer-column h4 {
  color: #E8DCC4;
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
  color: #E8DCC4;
}

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

.footer-bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #95A5A6;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #E8DCC4;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  color: #FFFFFF;
  margin: 0;
  flex: 1 1 300px;
}

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

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

.cookie-btn.accept {
  background-color: #E8DCC4;
  color: #2C3E50;
}

.cookie-btn.accept:hover {
  background-color: #d4c8b0;
}

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

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

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

.cookie-btn.settings:hover {
  background-color: rgba(232, 220, 196, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

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

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

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #2C3E50;
}

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

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

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #95A5A6;
  border-radius: 26px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #2C3E50;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-buttons .btn-save {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.cookie-modal-buttons .btn-save:hover {
  background-color: #1a252f;
}

.cookie-modal-buttons .btn-cancel {
  background-color: #95A5A6;
  color: #FFFFFF;
}

.cookie-modal-buttons .btn-cancel:hover {
  background-color: #7f8c8d;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .service-card,
  .project-card,
  .team-member,
  .principle,
  .category-card,
  .influence {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .main-nav,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card,
  .project-card,
  .team-member,
  .principle,
  .category-card,
  .influence,
  .step,
  .testimonial-card,
  .suggestion,
  .explore-card {
    flex: 1 1 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
  
  .footer-column {
    flex: 1 1 calc(50% - 40px);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .contact-form-section,
  .contact-info-section {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

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

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

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

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

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

/* ACCESSIBILITY */
.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;
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}