/* =================================================================
   SÉRÉNITÉ YOGA - SCANDINAVIAN CLEAN DESIGN SYSTEM
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #3D3D3D;
  background-color: #FEFEFE;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   SCANDINAVIAN CLEAN COLOR PALETTE
   ================================================================= */
:root {
  --primary: #2D5F5D;
  --primary-light: #3A7572;
  --primary-dark: #1F4442;
  --secondary: #C9A882;
  --secondary-light: #D4B797;
  --accent: #E8DDD0;
  --white: #FEFEFE;
  --off-white: #F7F5F2;
  --light-gray: #E5E5E5;
  --medium-gray: #9E9E9E;
  --text-dark: #3D3D3D;
  --text-medium: #6B6B6B;
  --border: #D8D8D8;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.08);
}

/* =================================================================
   TYPOGRAPHY - SCANDINAVIAN MINIMALIST
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

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

/* =================================================================
   HEADER - MINIMAL SCANDINAVIAN NAVIGATION
   ================================================================= */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow-light);
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

.cta-button {
  display: none;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* =================================================================
   MOBILE MENU - SCANDINAVIAN SLIDE-IN
   ================================================================= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background-color: var(--off-white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 20px var(--shadow-medium);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* =================================================================
   BUTTONS - MINIMALIST SCANDINAVIAN STYLE
   ================================================================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.link-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.link-cta:hover {
  color: var(--primary-dark);
}

/* =================================================================
   HERO SECTIONS - CLEAN & SPACIOUS
   ================================================================= */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--off-white) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.hero h1 {
  font-size: 48px;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-page {
  background-color: var(--off-white);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

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

.last-updated {
  font-size: 14px;
  color: var(--medium-gray);
  margin-top: 16px;
}

/* =================================================================
   SECTIONS - CLEAN LAYOUT WITH PROPER SPACING
   ================================================================= */
.introduction,
.story,
.philosophy,
.studio-description,
.sustainability,
.contact-intro {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.introduction h2,
.story h2,
.philosophy h2 {
  text-align: center;
  margin-bottom: 32px;
}

.introduction p,
.story p,
.philosophy > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* =================================================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ================================================================= */
.services-grid,
.services-grid-full,
.benefits-grid,
.values-grid,
.team-grid,
.pricing-grid,
.offers-grid,
.info-blocks,
.facilities-grid,
.spaces-grid,
.contact-grid,
.booking-methods,
.links-grid,
.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.service-card-detailed,
.benefit-card,
.value-card,
.teacher-card,
.pricing-card,
.offer-card,
.info-card,
.facility-card,
.space-card,
.contact-card,
.method-card,
.link-card,
.action-card {
  flex: 1 1 280px;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.service-card-detailed:hover,
.benefit-card:hover,
.value-card:hover,
.pricing-card:hover,
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.service-card h3,
.service-card-detailed h2,
.benefit-card h3,
.value-card h3,
.teacher-card h3,
.facility-card h3,
.space-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p,
.service-card-detailed p,
.benefit-card p,
.value-card p {
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
}

.price,
.price-large {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin: 16px 0;
}

.price-large {
  font-size: 32px;
}

.benefit-icon,
.value-icon,
.facility-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* =================================================================
   PRICING CARDS - FEATURED HIGHLIGHT
   ================================================================= */
.pricing-card {
  position: relative;
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  background-color: var(--off-white);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-medium);
  border-bottom: 1px solid var(--light-gray);
}

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

/* =================================================================
   TESTIMONIALS - READABLE DESIGN
   ================================================================= */
.testimonials {
  background-color: var(--off-white);
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 400px;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 8px;
}

.rating {
  color: var(--secondary);
  font-size: 18px;
  letter-spacing: 2px;
}

/* =================================================================
   SCHEDULE & HOURS - CLEAN INFORMATION DISPLAY
   ================================================================= */
.opening-hours,
.schedule,
.schedule-preview {
  padding: 60px 20px;
  margin-bottom: 40px;
  text-align: center;
}

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

.hours-block {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 24px 32px;
  min-width: 200px;
}

.hours-block h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hours-block p {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.schedule-info {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.schedule-info p {
  margin-bottom: 12px;
}

/* =================================================================
   CTA BANNERS - PROMINENT CALL-TO-ACTION
   ================================================================= */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 8px;
}

.cta-banner h2,
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background-color: var(--accent);
}

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

/* =================================================================
   LOCATION & CONTACT INFO
   ================================================================= */
.location-info,
.location-details,
.map-section {
  padding: 60px 20px;
  margin-bottom: 40px;
  background-color: var(--off-white);
}

.location-content,
.address-block,
.map-info {
  max-width: 600px;
  margin: 32px auto;
  text-align: center;
}

.address-block p,
.map-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =================================================================
   LEGAL PAGES - READABLE CONTENT
   ================================================================= */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-gray);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}

.legal-section h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.legal-section ul,
.legal-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* =================================================================
   CONTACT FORM SECTION
   ================================================================= */
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background-color: var(--accent);
  border-left: 4px solid var(--secondary);
  padding: 24px;
  border-radius: 4px;
  margin-top: 24px;
}

.form-note p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.form-note a:hover {
  color: var(--primary-dark);
}

/* =================================================================
   THANK YOU / CONFIRMATION PAGES
   ================================================================= */
.hero-confirmation {
  background: linear-gradient(135deg, var(--accent) 0%, var(--off-white) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.confirmation-message,
.confirmation-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.next-steps-info {
  background-color: var(--off-white);
  border-left: 4px solid var(--primary);
  padding: 24px;
  margin-top: 32px;
  border-radius: 4px;
}

.next-steps-info h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.next-steps-info ul {
  list-style: none;
  padding: 0;
}

.next-steps-info li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.next-steps-info li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.next-steps,
.quick-links {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-alternatives,
.booking-options,
.booking-info {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: var(--off-white);
  text-align: center;
}

.contact-options {
  max-width: 600px;
  margin: 24px auto;
}

.contact-options p {
  margin-bottom: 12px;
}

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* =================================================================
   TEACHER CARDS
   ================================================================= */
.teacher-title {
  font-size: 14px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

/* =================================================================
   FOOTER - CLEAN & ORGANIZED
   ================================================================= */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 200px;
}

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

.tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

footer h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

footer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

footer nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

footer nav a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* =================================================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ================================================================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px var(--shadow-medium);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  flex: 1 1 400px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

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

.cookie-consent-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-accept-all {
  background-color: var(--white);
  color: var(--primary);
}

.cookie-accept-all:hover {
  background-color: var(--accent);
}

.cookie-reject-all {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.cookie-settings {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

/* =================================================================
   COOKIE MODAL - PREFERENCES
   ================================================================= */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: var(--off-white);
  border-radius: 4px;
}

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

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 140px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-save-preferences {
  background-color: var(--primary);
  color: var(--white);
}

.cookie-save-preferences:hover {
  background-color: var(--primary-dark);
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

/* Tablets and larger */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
  }
  
  .cta-button {
    display: inline-block;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-subheadline {
    font-size: 20px;
  }
  
  .services-grid .service-card,
  .benefits-grid .benefit-card,
  .values-grid .value-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .pricing-grid .pricing-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .testimonials-grid .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  section {
    padding: 60px 20px;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .services-grid .service-card,
  .facilities-grid .facility-card {
    flex: 1 1 calc(25% - 18px);
  }
  
  .services-grid-full .service-card-detailed {
    flex: 1 1 calc(50% - 12px);
  }
  
  .benefits-grid .benefit-card,
  .values-grid .value-card,
  .spaces-grid .space-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    text-decoration: underline;
  }
}