@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Nunito:wght@300;400;600;700&display=swap");

:root {
            --accent-rose: #be185d;
            --cream: #fffbeb;
            --dark-brown: #451a03;
            --light-gray: #f9f5f0;
            --text-dark: #2d1810;
            --text-light: #6b4423;
            --border-color: #e8dcc8;
        }

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

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            background-color: #fefdfb;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Nunito', sans-serif;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--dark-brown);
            font-weight: 700;
        }

        h2 {
            font-size: 2.2rem;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: var(--dark-brown);
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.6rem;
            color: var(--dark-brown);
        }

        p {
            font-size: 1.05rem;
            margin-bottom: 1.2rem;
            color: var(--text-light);
            line-height: 1.7;
        }

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

        header {
            background-color: #fefdfb;
            border-bottom: 1px solid var(--border-color);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Nunito', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-brown);
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            letter-spacing: 0.3px;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--accent-rose);
        }

        nav a.active {
            color: var(--accent-rose);
            border-bottom: 2px solid var(--accent-rose);
            padding-bottom: 0.2rem;
        }

        main {
            flex: 1;
        }

        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        section.hero-section {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, #fefdfb 0%, #f9f5f0 100%);
        }

        .eyebrow {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-rose);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hero-section h1 {
            font-size: 4.2rem;
            margin-bottom: 1.2rem;
        }

        .hero-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--text-light);
        }

        .hero-image-container {
            margin-top: 3rem;
            border-radius: 12px;
            overflow: hidden;
            height: 420px;
        }

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

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

        .section-header h2 {
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--accent-rose);
            margin: 0.8rem auto 0;
        }

        .section-header p {
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background-color: #fefdfb;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(190, 24, 93, 0.08);
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

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

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .split-image {
            border-radius: 12px;
            overflow: hidden;
            height: 380px;
        }

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

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

        .split-text p {
            margin-bottom: 1.2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent-rose);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #a01652;
            transform: translateY(-2px);
        }

        .cta-section {
            text-align: center;
            background-color: var(--light-gray);
            border-radius: 12px;
            padding: 4rem 2rem;
        }

        .cta-section h2 {
            margin-bottom: 0.8rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .responsible-section {
            background-color: #f5f0e8;
            border-left: 4px solid var(--accent-rose);
            padding: 3rem;
            border-radius: 8px;
            text-align: center;
        }

        .responsible-section h2 {
            margin-bottom: 1rem;
        }

        .responsible-section p {
            margin-bottom: 1.5rem;
        }

        .support-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .support-links a {
            color: var(--accent-rose);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .support-links a:hover {
            color: var(--dark-brown);
            text-decoration: underline;
        }

        footer {
            background-color: var(--dark-brown);
            color: #f0ebe0;
            margin-top: 4rem;
        }

        .footer-top {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-column h4 {
            color: var(--cream);
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: #d4c9b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

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

        .footer-column p {
            color: #d4c9b8;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            background-color: #3a1408;
            padding: 1.5rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 251, 235, 0.1);
            font-size: 0.9rem;
            color: #d4c9b8;
        }

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

            h2 {
                font-size: 1.8rem;
            }

            .hero-section h1 {
                font-size: 2.8rem;
            }

            nav ul {
                gap: 1.5rem;
            }

            .split-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .split-image {
                height: 300px;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .hero-section {
                padding: 4rem 1.5rem;
            }

            .feature-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .support-links {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            header nav {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            h1 {
                font-size: 2rem;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.4rem;
            }

            p {
                font-size: 0.95rem;
            }

            .cta-button {
                padding: 0.85rem 1.8rem;
                font-size: 0.9rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
