/* =====================================================
   TORMENTA SUAVE - Wellness Center Styles
   Palette: Forest Gold (#4)
   ===================================================== */

:root {
    --primary: #1a3c34;
    --secondary: #2d5a4a;
    --accent: #c9a962;
    --background: #f8faf8;
    --text: #0f1f1a;
    
    --white: #ffffff;
    --gray-light: #e8ebe8;
    --gray: #6b7770;
    --shadow: rgba(26, 60, 52, 0.1);
    --shadow-strong: rgba(26, 60, 52, 0.15);
    
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --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;
    font-weight: 400;
    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 {
    list-style: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

/* =====================================================
   LAYOUT
   ===================================================== */

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

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--background);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

.btn-text {
    color: var(--secondary);
    font-weight: 500;
    transition: color var(--transition);
}

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

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    background-color: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo:hover {
    color: var(--accent);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition);
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */

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

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

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

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

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 0;
}

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

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

.program-hero h1 {
    color: var(--white);
}

.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   CARDS - UNIFIED STYLE
   ===================================================== */

.program-card,
.product-card,
.value-card,
.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all var(--transition);
}

.program-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-strong);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.program-card h3,
.product-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.program-card p,
.product-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

/* =====================================================
   GRIDS
   ===================================================== */

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

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

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

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

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

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

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

/* =====================================================
   ABOUT SECTION
   ===================================================== */

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

.about-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
}

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

.approach-image img {
    border-radius: 12px;
}

/* =====================================================
   PROGRAMS LIST
   ===================================================== */

.programs-intro,
.articles-intro,
.testimonials-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.program-full-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
}

.program-full-card.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.program-full-card.reverse .program-full-image {
    order: 2;
}

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

.program-tagline {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 15px;
}

/* =====================================================
   PROGRAM DETAIL
   ===================================================== */

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

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

.program-main h2,
.program-main h3 {
    margin-top: 30px;
}

.program-details-card,
.program-includes-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 20px;
}

.program-meta {
    margin-bottom: 20px;
}

.program-meta li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.program-includes-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.program-includes-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* =====================================================
   PRODUCTS
   ===================================================== */

.product-card {
    text-align: center;
}

.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.product-feature {
    background: var(--background);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.products-cta,
.programs-cta {
    text-align: center;
    margin-top: 40px;
}

/* =====================================================
   ARTICLES
   ===================================================== */

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

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-strong);
}

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.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: 500;
    margin-bottom: 12px;
}

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

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

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

.article-content h3 {
    font-size: 1.125rem;
}

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

/* Article Full */
.article-full {
    padding: 40px 0 80px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.article-featured-image {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-footer {
    max-width: 750px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags a,
.article-share a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--background);
    border-radius: 6px;
    margin-left: 8px;
    font-size: 0.9rem;
}

.related-articles {
    background: var(--background);
}

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

/* =====================================================
   TESTIMONIALS
   ===================================================== */

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-card cite {
    color: var(--gray);
    font-size: 0.9rem;
}

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

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

.testimonial-info h3 {
    margin-bottom: 5px;
}

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

.program-tag {
    color: var(--accent) !important;
    font-weight: 500;
}

.testimonial-card-full blockquote p {
    margin-bottom: 15px;
}

.testimonial-featured {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-featured .testimonial-avatar {
    margin: 0 auto 20px;
}

.testimonial-featured blockquote {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonials-preview {
    text-align: center;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.program-testimonial {
    background: var(--background);
}

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

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.125rem;
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form-container h2 {
    margin-bottom: 10px;
}

.contact-form-container > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    margin-bottom: 5px;
    color: var(--gray);
}

/* =====================================================
   FORMS
   ===================================================== */

.contact-form,
.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.selected-product {
    background: var(--background);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Newsletter */
.newsletter-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-direction: row;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form .form-note {
    color: rgba(255,255,255,0.7);
}

/* =====================================================
   SHIPPING INFO
   ===================================================== */

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

.shipping-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.shipping-item h3 {
    margin-bottom: 10px;
}

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

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

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

/* =====================================================
   FOOTER
   ===================================================== */

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

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    opacity: 0.8;
}

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

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

.site-footer ul a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer ul a:hover {
    color: var(--accent);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 10px;
}

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

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

/* =====================================================
   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;
    padding: 20px;
}

.modal.active {
    display: flex;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

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

.modal-content h2 {
    margin-bottom: 20px;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 1500;
    box-shadow: 0 -4px 20px var(--shadow);
}

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

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

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

.cookie-content a {
    color: var(--accent);
}

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

.cookie-buttons .btn-secondary {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.cookie-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */

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

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-body h2 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-body h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

/* =====================================================
   SECTION SUBTITLES
   ===================================================== */

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: -20px auto 0;
}

section h2 {
    text-align: center;
}

.about-brief h2,
.approach-content h2,
.story-content h2,
.contact-form-container h2 {
    text-align: left;
}

/* =====================================================
   INTRO CONTENT
   ===================================================== */

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

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

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

@media (max-width: 1024px) {
    .programs-grid,
    .products-grid,
    .values-grid,
    .shipping-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .program-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 20px;
        box-shadow: 0 4px 20px var(--shadow);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid,
    .products-grid,
    .values-grid,
    .articles-grid,
    .testimonials-grid,
    .faq-grid,
    .shipping-grid,
    .info-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .program-full-card,
    .program-full-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .program-full-card.reverse .program-full-image {
        order: 0;
    }
    
    .program-sidebar {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .testimonial-card-full {
        padding: 25px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}
