/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E57373;
    --accent-color: #FFB74D;
    --neutral-cream: #FFFBF5;
    --neutral-chocolate: #5D4037;
    --text-color: #5D4037;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(93, 64, 55, 0.08);
    --shadow-hover: 0 8px 30px rgba(93, 64, 55, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--neutral-cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

.section {
    padding: 100px 0;
}

.section-alt {
    background: linear-gradient(135deg, #FFFBF5 0%, #FFF8F0 100%);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    max-width: 700px;
}

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

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.8;
}

.section-description.centered {
    text-align: center;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #D96A6A 100%);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #D96A6A 0%, var(--primary-color) 100%);
}

.cta-button-light {
    background: var(--white);
    color: var(--primary-color);
}

.cta-button-light:hover {
    background: var(--neutral-cream);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(93, 64, 55, 0.15);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--accent-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #D96A6A;
    transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(93, 64, 55, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Nunito', sans-serif;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circle-animation {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 115, 115, 0.15), rgba(255, 183, 77, 0.1));
    animation: pulse 6s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    animation-delay: 2s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===================================
   SECTION CONTENT
   =================================== */

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 1;
}

.section-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.section-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===================================
   BALANCE METRICS
   =================================== */

.balance-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.metric-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.metric-text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===================================
   FEATURES GRID
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(229, 115, 115, 0.15), rgba(255, 183, 77, 0.15));
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===================================
   MISSION BOX
   =================================== */

.mission-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 50px;
    border-radius: var(--border-radius);
    margin: 50px 0;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.mission-box h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.mission-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 800px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    margin-top: 60px;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--neutral-cream);
    box-shadow: var(--shadow);
}

.team-member h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-bio {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===================================
   RESOURCES GRID
   =================================== */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.resource-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.resource-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.resource-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.resource-card > p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
}

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

.resource-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===================================
   BLOG GRID
   =================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-excerpt {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.7;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 12px;
}

.blog-link i {
    font-size: 0.9rem;
}

/* ===================================
   BLOG ARTICLE
   =================================== */

.article-section {
    padding: 120px 0 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.back-link:hover {
    gap: 12px;
}

.article-content {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.article-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-title {
    padding: 40px 60px 20px;
    font-size: 2.5rem;
    line-height: 1.3;
}

.article-meta {
    padding: 0 60px 30px;
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    opacity: 0.7;
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-body {
    padding: 40px 60px 60px;
}

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: none;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body ul li {
    list-style: disc;
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-body strong {
    font-weight: 600;
    color: var(--primary-color);
}

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

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(229, 115, 115, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    line-height: 1.8;
    opacity: 0.9;
    max-width: none;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
    margin: 0;
    line-height: 1.6;
}

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

.contact-map {
    margin-top: 20px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(93, 64, 55, 0.15);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    background: var(--neutral-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

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

.form-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(229, 115, 115, 0.1);
    color: #C62828;
    border: 2px solid rgba(229, 115, 115, 0.3);
}

/* ===================================
   LEGAL SECTION
   =================================== */

.legal-section {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: none;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 auto 30px;
    max-width: 700px;
    opacity: 0.95;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    display: inline-block;
    padding: 5px 0;
}

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

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

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

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    /* Layout */
    .section {
        padding: 60px 0;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-column.reverse {
        direction: ltr;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Features and Cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* Article */
    .article-title {
        padding: 30px 30px 15px;
        font-size: 2rem;
    }

    .article-meta {
        padding: 0 30px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .article-body {
        padding: 30px;
    }

    .article-hero-image {
        height: 250px;
    }

    /* Legal */
    .legal-content {
        padding: 40px 30px;
    }

    /* Mission Box */
    .mission-box {
        padding: 40px 30px;
    }

    .mission-box h3 {
        font-size: 1.6rem;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .balance-metrics {
        gap: 15px;
    }

    .metric-item {
        padding: 15px;
    }

    .metric-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}