/* ========================================
   Bambus Seele — Wellness Center Styles
   Palette: Ocean Trust (#1 - SEED % 5 = 1)
   ======================================== */

:root {
    --primary: #1e3a5f;
    --secondary: #2d5a8a;
    --accent: #7fb3d5;
    --background: #f5f8fb;
    --text: #152638;
    
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    
    --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    
    --shadow-sm: 0 1px 2px rgba(21, 38, 56, 0.05);
    --shadow-md: 0 4px 6px rgba(21, 38, 56, 0.07);
    --shadow-lg: 0 10px 25px rgba(21, 38, 56, 0.1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

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

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

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
    font-weight: 600;
}

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

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--gray-500);
    line-height: 1.8;
}

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

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

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

.bg-light {
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-top: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

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

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

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

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

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

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

.hero-content h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

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

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

.page-hero-small {
    padding: 60px 0;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--gray-400);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn-text:hover {
    color: var(--text);
}

.link-arrow {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow::after {
    content: '→';
    transition: transform var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Cards */
.program-card,
.product-card,
.value-card,
.info-card,
.practical-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-icon,
.value-icon {
    width: 56px;
    height: 56px;
    background: var(--background);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.program-icon svg,
.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

/* Grids */
.programs-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

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

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Intro Section */
.intro-grid,
.about-grid,
.approach-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img,
.about-image img,
.approach-image img,
.benefits-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.approach-list {
    margin: 24px 0;
}

.approach-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.benefits-list {
    margin: 24px 0;
}

.benefits-list li {
    padding: 10px 0 10px 28px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Products */
.product-card {
    padding: 0;
    overflow: hidden;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin-bottom: 12px;
}

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

/* Product Card Large */
.products-full-grid {
    display: grid;
    gap: 40px;
}

.product-card-large {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.product-card-large .product-image {
    height: 100%;
    min-height: 280px;
}

.product-card-large .product-content {
    padding: 32px;
}

.product-tagline {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    padding: 6px 0;
    position: relative;
    list-style: disc;
    color: var(--gray-500);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* Programs Full */
.programs-full-grid {
    display: grid;
    gap: 40px;
}

.program-card-large {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.program-card-image {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

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

.program-card-content {
    padding: 40px;
}

.program-tagline {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.program-meta {
    display: flex;
    gap: 24px;
    margin: 20px 0;
}

.program-meta span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.program-hero-content .breadcrumb a,
.program-hero-content .breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.program-details-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.program-details-list {
    margin: 24px 0;
}

.program-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.detail-label {
    color: var(--gray-500);
}

.detail-value {
    font-weight: 600;
    color: var(--primary);
}

/* Week Cards */
.program-weeks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.week-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

/* Session Timeline */
.session-timeline {
    display: grid;
    gap: 24px;
}

.timeline-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
}

.timeline-time {
    display: inline-block;
    background: var(--background);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.faq-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--gray-500);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-featured {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-featured blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.testimonial-featured .testimonial-author {
    justify-content: center;
}

/* Articles */
.articles-grid {
    display: grid;
    gap: 40px;
}

.article-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.article-image {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 32px;
}

.article-category {
    display: inline-block;
    background: var(--background);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.article-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.article-content h2 a {
    color: var(--primary);
}

.article-content h2 a:hover {
    color: var(--secondary);
}

.articles-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-link-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    display: block;
    transition: transform var(--transition);
}

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

.article-link-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

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

.article-header {
    max-width: 800px;
    margin: 0 auto 40px;
}

.article-header h1 {
    font-size: 2.25rem;
    margin: 16px 0;
}

.article-meta {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.article-featured-image {
    max-width: 900px;
    margin: 0 auto 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
}

.article-body {
    max-width: 700px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    margin-top: 32px;
}

.article-cta {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-md);
    margin-top: 48px;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 12px;
}

.article-cta p {
    margin-bottom: 20px;
}

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

.contact-details {
    margin: 32px 0;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.contact-note {
    background: var(--background);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 32px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.direction-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45, 90, 138, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 16px;
    text-align: center;
}

/* Order Form / Modal */
.order-form .form-group input {
    text-align: center;
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    max-width: 440px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
}

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

.modal-content h3 {
    text-align: center;
    margin-bottom: 8px;
}

.modal-product-name {
    text-align: center;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

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

.cta-content p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

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

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

/* Thank You */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thank-you-container {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.thank-you-container h1 {
    margin-bottom: 16px;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.thank-you-note {
    color: var(--gray-500);
    margin-bottom: 32px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-main);
}

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

.footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

/* Legal Pages */
.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

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

.legal-text h3 {
    margin-top: 32px;
    color: var(--secondary);
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

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

/* Space Section */
.space-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.space-gallery img {
    border-radius: var(--radius-md);
}

/* Science Content */
.science-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .programs-grid,
    .values-grid,
    .products-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .program-details-card {
        position: static;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .intro-grid,
    .about-grid,
    .approach-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid,
    .values-grid,
    .products-grid,
    .info-grid,
    .testimonials-grid,
    .articles-grid-small,
    .directions-grid,
    .practical-grid,
    .program-weeks {
        grid-template-columns: 1fr;
    }
    
    .article-card,
    .program-card-large,
    .product-card-large {
        grid-template-columns: 1fr;
    }
    
    .article-image,
    .program-card-image,
    .product-card-large .product-image {
        height: 200px;
        min-height: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .program-card,
    .product-card,
    .value-card,
    .info-card {
        padding: 24px;
    }
    
    .modal-content {
        padding: 28px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 16px;
    }
    
    .product-footer .btn-primary {
        width: 100%;
    }
}
