/* =================================
   RADIANT SOJOURN - MINIMALIST STYLE
   Modern, Clean, Premium Design
   ================================= */

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

:root {
  --primary-color: #2C3E50;
  --secondary-color: #C89B7B;
  --accent-color: #E8DCC4;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #E0E0E0;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --border-radius: 2px;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

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

/* SECTIONS */
section {
  margin-bottom: 80px;
  padding: 60px 0;
}

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

/* HEADER */
header {
  background: var(--white);
  border-bottom: 1px solid var(--medium-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 24px 0;
}

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

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

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

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--medium-gray);
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.mobile-menu-toggle:hover {
  background: var(--light-gray);
  border-color: var(--primary-color);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 32px;
  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: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 32px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  padding: 100px 0 80px;
  text-align: center;
  margin-bottom: 0;
}

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

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 32px;
  color: var(--text-light);
  text-align: left;
}

.breadcrumbs a {
  color: var(--text-light);
}

.breadcrumbs a:hover {
  color: var(--secondary-color);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

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

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

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

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

.btn-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 4px;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.btn-link:hover::after {
  width: 0;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* CARDS & GRIDS */
.card-container,
.categories-grid,
.features-grid,
.services-grid,
.testimonials-grid,
.tips-grid,
.contact-grid,
.mission-grid,
.split-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card,
.feature-item,
.service-card,
.testimonial-card,
.tip-card,
.contact-card,
.mission-card,
.section-card {
  background: var(--white);
  border: 1px solid var(--medium-gray);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  margin-bottom: 20px;
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--text-light);
}

/* FEATURE ITEMS */
.feature-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: none;
  background: var(--light-gray);
}

.feature-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  margin: 0;
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card p {
  margin-bottom: 16px;
}

.service-card .price {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--border-radius);
  margin-top: 8px;
}

/* TESTIMONIALS */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--light-gray);
  border: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.text-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.text-section ul li {
  margin-bottom: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

.text-section h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

/* COLLECTION INTRO */
.collection-intro {
  padding: 40px 0;
  background: var(--light-gray);
}

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

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--medium-gray);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
}

/* CATEGORY FILTERS */
.category-navigation {
  padding: 60px 0;
  background: var(--white);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--medium-gray);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

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

/* CTA SECTIONS */
.cta-section,
.cta-consultation,
.cta-visit {
  background: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

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

.cta-content h2 {
  margin-bottom: 16px;
}

.cta-content p {
  margin-bottom: 32px;
  font-size: 16px;
}

.store-info,
.contact-info {
  margin: 32px 0;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--medium-gray);
}

.store-info p,
.contact-info p {
  margin-bottom: 12px;
  font-size: 14px;
}

/* SPLIT SECTIONS */
.split-grid {
  gap: 32px;
}

.section-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
}

/* CONTACT PAGE */
.contact-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

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

.contact-card p {
  font-size: 14px;
  margin: 0;
}

.contact-form-placeholder {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: var(--border-radius);
}

.contact-form-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.contact-form-placeholder li {
  padding: 12px 0;
  border-bottom: 1px solid var(--medium-gray);
  color: var(--text-light);
}

.form-note,
.privacy-link {
  font-size: 14px;
  margin-top: 24px;
  color: var(--text-light);
}

/* CONSULTATION BOOKING */
.consultation-booking {
  padding: 60px 0;
  background: var(--white);
}

.consultation-info {
  max-width: 700px;
  margin: 32px auto;
  padding: 32px;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.consultation-info ul {
  list-style: disc;
  padding-left: 24px;
  margin: 16px 0;
}

.consultation-info li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.cancellation {
  font-size: 14px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 24px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 32px auto;
}

.faq-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--medium-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.faq-item p {
  margin: 0;
  color: var(--text-light);
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 120px 0;
}

.thank-you-content {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease-out;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.step-item,
.suggestion-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.footer-nav a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--medium-gray);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 280px;
}

.cookie-text p {
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

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

.cookie-btn-accept:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--medium-gray);
}

.cookie-btn-reject:hover {
  background: var(--light-gray);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-light);
  border: none;
  text-decoration: underline;
  padding: 12px 16px;
}

.cookie-btn-settings:hover {
  color: var(--primary-color);
}

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

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

.cookie-modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--medium-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 20px;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--primary-color);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

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

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

.cookie-category h4 {
  margin: 0;
  font-size: 16px;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--medium-gray);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background: var(--secondary-color);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle.active::after {
  left: 26px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--medium-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE DESIGN */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .main-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero {
    padding: 140px 0 100px;
  }
  
  section {
    margin-bottom: 100px;
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  section {
    margin-bottom: 60px;
    padding: 40px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .category-card,
  .feature-item,
  .service-card,
  .testimonial-card,
  .contact-card,
  .section-card,
  .step-item,
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .category-card,
  .feature-item,
  .service-card,
  .testimonial-card {
    padding: 24px 20px;
  }
}

/* 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; }
.mt-5 { margin-top: 40px; }

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: underline;
  }
}