:root {
    --color-sandbeige: #d4b896;
    --color-sandbeige-light: #e8dcc8;
    --color-sandbeige-dark: #b89b78;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-text: #2d2a26;
    --color-text-light: #5a5650;
    --color-border: #e0d8cc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

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

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

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

.navbar {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--color-sandbeige-dark);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-sandbeige-dark);
}

.navbar-toggler {
    border: 1px solid var(--color-border);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d2a26' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sandbeige-light) 100%);
    padding: 3rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 2rem;
}

.section {
    padding: 3rem 0;
}

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

.section-cream {
    background-color: var(--color-cream);
}

.section-gradient {
    background: linear-gradient(180deg, var(--color-sandbeige-light) 0%, var(--color-cream) 100%);
}

.content-block {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--color-border);
}

.content-image {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card img {
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.context-block {
    background: linear-gradient(135deg, var(--color-sandbeige-light) 0%, var(--color-cream) 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--color-sandbeige);
}

.context-block h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.context-block p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--color-sandbeige-light) 0%, var(--color-white) 100%);
    border-radius: 12px;
    margin: 2rem 0;
}

.btn-cta {
    display: inline-block;
    background: var(--color-sandbeige);
    color: var(--color-text);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.education-notice {
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
}

footer {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sandbeige-light) 100%);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--color-border);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-sandbeige-dark);
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cookie-accept {
    background: var(--color-sandbeige);
    color: var(--color-text);
}

.btn-cookie-accept:hover {
    background: var(--color-sandbeige-dark);
    color: var(--color-white);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
}

.btn-cookie-decline:hover {
    background: var(--color-cream);
}

.page-header {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sandbeige-light) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-content {
    padding: 3rem 0;
}

.policy-content h2 {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.about-image {
    border-radius: 12px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.thank-you-section {
    text-align: center;
    padding: 4rem 0;
}

.thank-you-section h1 {
    margin-bottom: 1.5rem;
}

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

    h2 {
        font-size: 1.75rem;
    }

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

    .section {
        padding: 4rem 0;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-text {
        flex: 1;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

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

    .hero-image {
        max-height: 500px;
    }
}
