/* ============================================
   SUNNY TREAD - MONOCHROME SOPHISTICATED DESIGN
   Sophisticated monochrome design with dramatic contrast
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

/* ============================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 32px;
}

/* ============================================
   LAYOUT & CONTAINER
   ============================================ */

.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 - MONOCHROME ELEGANT
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
}

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

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

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #000000;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

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

/* ============================================
   BUTTONS - MONOCHROME STYLE
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 0;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

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

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================
   HERO SECTION - DRAMATIC MONOCHROME
   ============================================ */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}

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

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

.subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background-color: #f5f5f5;
  padding: 60px 20px 40px;
  border-bottom: 2px solid #000000;
}

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

.page-hero .intro {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.breadcrumb a {
  color: #000000;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* ============================================
   CARDS - CLEAN MONOCHROME
   ============================================ */

.benefits-grid,
.services-grid,
.values-grid,
.categories-grid,
.spots-grid,
.tips-grid,
.events-grid,
.articles-grid,
.content-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.value-card,
.category-card,
.spot-card,
.tip-card,
.event-card,
.article-card,
.content-card,
.step-card {
  flex: 1 1 300px;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.category-card:hover,
.spot-card:hover,
.tip-card:hover,
.event-card:hover,
.article-card:hover,
.content-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
}

.benefit-card img,
.value-card img,
.category-card img,
.step-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0);
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.category-card h3,
.spot-card h3,
.tip-card h3,
.event-card h3,
.article-card h3,
.content-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.benefit-card p,
.service-card p,
.value-card p,
.category-card p,
.spot-card p,
.tip-card p,
.event-card p,
.article-card p,
.content-card p {
  color: #3a3a3a;
  font-size: 15px;
  line-height: 1.6;
}

.service-card .price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin: 20px 0;
}

.service-card .btn {
  width: 100%;
  margin-top: 16px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

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

.testimonial-card {
  flex: 1 1 450px;
  background-color: #ffffff;
  border-left: 4px solid #000000;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: #e0e0e0;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.customer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}

.customer-info strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
}

.customer-info span {
  font-size: 14px;
  color: #666666;
}

/* ============================================
   STEPS & PROCESS
   ============================================ */

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  align-items: flex-start;
}

.step {
  flex: 1 1 280px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  color: #4a4a4a;
}

/* ============================================
   EVENT CARDS
   ============================================ */

.event-date {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.event-card .location {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-top: 12px;
  margin-bottom: 12px;
}

.event-card .price {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 16px 0;
}

/* ============================================
   SPOT CARDS
   ============================================ */

.spot-card .location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.pro-tip-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-banner,
.cta-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.02) 10px,
    rgba(255, 255, 255, 0.02) 20px
  );
  pointer-events: none;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn,
.cta-section .btn {
  border-color: #ffffff;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.cta-banner .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 40px;
}

.contact-form-wrapper,
.contact-info {
  flex: 1 1 400px;
}

.form-note {
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
  padding: 24px;
  margin-top: 24px;
}

.form-note p {
  color: #2a2a2a;
  margin: 0;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}

.info-block img {
  width: 40px;
  height: 40px;
  filter: brightness(0);
}

.info-block strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.info-block p {
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

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

/* ============================================
   COMMUNITY & STATS
   ============================================ */

.community-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 40px 0;
  padding: 40px 0;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat .number {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
}

.stat .label {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   FEATURED CONTENT
   ============================================ */

.featured-article {
  background-color: #f5f5f5;
  border: 2px solid #000000;
  padding: 48px;
  margin-top: 40px;
}

.featured-article h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  color: #3a3a3a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #d0d0d0;
}

.article-meta .author,
.article-meta .date,
.article-meta .read-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  margin-top: 40px;
}

.faq-item {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

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

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

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2a2a2a;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: #3a3a3a;
}

.principles-list {
  margin-top: 24px;
  margin-left: 24px;
}

.principles-list li {
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid #000000;
  color: #2a2a2a;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  filter: brightness(0);
}

.confirmation-message {
  font-size: 18px;
  color: #3a3a3a;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER - MONOCHROME STYLE
   ============================================ */

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
}

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

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.7;
}

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

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

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

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

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.cookie-banner .btn {
  padding: 12px 24px;
  font-size: 13px;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  border: 3px solid #000000;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f8f8f8;
  border-left: 3px solid #000000;
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .subheadline { font-size: 16px; }
  
  /* Layout */
  section { padding: 32px 16px; }
  .container { padding: 0 16px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  .header-content {
    padding: 16px 0;
  }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  
  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cards */
  .benefits-grid,
  .services-grid,
  .values-grid,
  .categories-grid,
  .spots-grid,
  .tips-grid,
  .events-grid,
  .articles-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .category-card,
  .spot-card,
  .tip-card,
  .event-card,
  .article-card,
  .content-card {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Steps */
  .steps-grid {
    flex-direction: column;
  }
  
  /* Contact */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Featured Article */
  .featured-article {
    padding: 32px 24px;
  }
  
  /* Community Stats */
  .community-stats {
    gap: 32px;
  }
  
  .stat .number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .benefit-card img,
  .value-card img,
  .category-card img {
    width: 50px;
    height: 50px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .service-card .price {
    font-size: 24px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.hero-content,
.benefit-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out forwards;
}

.benefit-card:nth-child(2) { animation-delay: 0.1s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.pt-32 { padding-top: 32px; }
.pb-32 { padding-bottom: 32px; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}