/* Wind Pfad - Styles
   Palette: Lavender Premium (SEED % 5 = 3)
*/

:root {
  --primary: #4a3561;
  --secondary: #6b4d8a;
  --accent: #b8a9c9;
  --background: #faf8fc;
  --text: #2a1f38;
  --white: #ffffff;
  --shadow: rgba(74, 53, 97, 0.1);
  --shadow-hover: rgba(74, 53, 97, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1rem; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

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

/* Header */
.header {
  background: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--secondary) !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-text {
  color: var(--secondary) !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  gap: 0.75rem;
  color: var(--primary) !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 100px 0;
  color: var(--white);
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Program Hero */
.program-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 40px 0 60px;
  color: var(--white);
}

.program-hero .breadcrumb {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.program-hero .breadcrumb a {
  color: var(--white) !important;
  opacity: 0.8;
}

.program-hero .breadcrumb a:hover {
  opacity: 1;
}

.program-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.program-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 80px 0;
}

.alt-bg {
  background: var(--background);
}

.section-subtitle {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Intro Section */
.intro {
  background: var(--background);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

.intro-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Features */
.features {
  text-align: center;
}

.features h2 {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--background);
  padding: 40px 30px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Programs Preview */
.programs-preview {
  background: var(--background);
  text-align: center;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px var(--shadow-hover);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-content {
  padding: 24px;
  text-align: left;
}

.program-content h3 {
  margin-bottom: 0.75rem;
}

.programs-cta {
  margin-top: 2rem;
}

/* Programs List */
.programs-list {
  padding: 60px 0;
}

.program-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.program-full.reverse {
  direction: rtl;
}

.program-full.reverse > * {
  direction: ltr;
}

.program-full-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

.program-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.program-features {
  margin: 1.5rem 0;
}

.program-features li {
  margin-bottom: 0.75rem;
}

/* Program Overview */
.program-overview {
  padding: 60px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.overview-main h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.overview-main h2:first-child {
  margin-top: 0;
}

.overview-main h3 {
  margin-top: 1.5rem;
  color: var(--secondary);
}

.overview-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.program-details-card {
  background: var(--background);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.program-details-card h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
}

.details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.details-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.details-list li:last-child {
  border-bottom: none;
}

.details-cta {
  margin-top: 1.5rem;
}

.testimonial-sidebar {
  background: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
}

.testimonial-sidebar blockquote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-sidebar cite {
  font-style: normal;
  opacity: 0.8;
}

/* Program Benefits */
.program-benefits {
  background: var(--background);
}

.program-benefits h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Products */
.products-preview, .products-section {
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px var(--shadow-hover);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 24px;
}

.product-category {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-content h3 {
  margin-bottom: 0.75rem;
}

.product-features {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product-features li {
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.products-cta {
  margin-top: 3rem;
}

/* Shop Info */
.shop-info {
  background: var(--background);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonial-preview {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.testimonial-highlight blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  text-align: left;
}

.testimonial-info strong {
  display: block;
}

.testimonial-info span {
  opacity: 0.8;
}

.testimonial-cta {
  margin-top: 2rem;
}

.testimonial-cta .btn-text {
  color: var(--accent) !important;
}

/* Testimonials List */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-meta strong {
  display: block;
  color: var(--primary);
}

.testimonial-meta span {
  font-size: 0.9rem;
  color: var(--secondary);
}

.testimonial-program {
  background: var(--background);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: inline-block;
}

.testimonial-body p {
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

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

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.95;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 24px;
}

.article-category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.article-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Article Page */
.article-page {
  padding: 40px 0 80px;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header .breadcrumb {
  margin-bottom: 1rem;
}

.article-header h1 {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.article-meta {
  color: var(--secondary);
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.article-body {
  max-width: 100%;
}

.article-hero-image {
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 2rem;
  color: var(--secondary);
}

.article-cta {
  background: var(--background);
  padding: 30px;
  border-radius: 12px;
  margin-top: 3rem;
}

.article-cta h3 {
  margin-top: 0;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-box {
  background: var(--background);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.sidebar-box h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.sidebar-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-box li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.sidebar-box li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

.sidebar-box a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-box a:last-child {
  border-bottom: none;
}

/* Contact */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-card {
  margin-bottom: 2rem;
}

.contact-card h3 {
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.contact-note {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 0.5rem;
}

.contact-form-wrapper h2 {
  margin-bottom: 1rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(107, 77, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 1rem;
}

/* Order Form */
.order-form {
  margin-top: 1.5rem;
}

.order-form .form-group input {
  margin-bottom: 0;
}

/* FAQ */
.faq-section {
  background: var(--background);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* Programs Info */
.programs-info {
  background: var(--background);
}

.programs-info h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Newsletter */
.newsletter-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
}

.newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-box h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  color: var(--secondary);
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
  background: var(--background);
  font-weight: 600;
}

/* Philosophy & Values */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2rem;
}

.philosophy-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
}

.philosophy-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.values-list {
  max-width: 800px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.value-content h3 {
  margin-bottom: 0.5rem;
}

/* Story & Approach */
.story-grid,
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img,
.approach-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px var(--shadow);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.modal-close:hover {
  opacity: 1;
}

.modal-content h2 {
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 1500;
  padding: 20px;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
}

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

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  opacity: 0.8;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-nav a,
.footer-legal a {
  display: block;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 6px 0;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white) !important;
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  opacity: 0.7;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid,
  .programs-grid,
  .products-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }
  
  .nav a {
    font-size: 0.85rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .intro-grid,
  .story-grid,
  .approach-grid,
  .program-full,
  .overview-grid,
  .contact-grid,
  .article-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .program-full.reverse {
    direction: ltr;
  }
  
  .features-grid,
  .programs-grid,
  .products-grid,
  .articles-grid,
  .testimonials-grid,
  .faq-grid,
  .benefits-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .value-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .overview-sidebar,
  .article-sidebar {
    position: static;
  }
}
