:root {
    --sage-green: #7D9B76;
    --sage-green-dark: #5C7A55;
    --sage-green-light: #A8C4A2;
    --text-dark: #2C3E2D;
    --text-medium: #4A5D4B;
    --text-light: #6B7D6C;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAF8;
    --bg-cream: #F5F7F4;
    --border-color: #E2E8E3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

a:hover {
    color: var(--sage-green-dark);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-green);
}

.header .navbar-brand:hover {
    color: var(--sage-green-dark);
}

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

.header .nav-link:hover {
    color: var(--sage-green);
}

.navbar-toggler {
    border-color: var(--sage-green);
}

.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='%237D9B76' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    margin-top: 76px;
}

.section {
    padding: 4rem 0;
}

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

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

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-block {
    margin-bottom: 2rem;
}

.content-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-read {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--sage-green);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-read:hover {
    background-color: var(--sage-green-dark);
    color: var(--bg-white);
    text-decoration: none;
}

.card-custom {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.card-custom:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card-custom h3 {
    color: var(--sage-green);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke: var(--sage-green);
}

.faq-section .card {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
}

.faq-section .card-header {
    background-color: var(--bg-white);
    border-bottom: none;
    padding: 0;
}

.faq-section .btn-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    padding: 1.25rem;
    display: block;
    width: 100%;
    text-align: left;
}

.faq-section .btn-link:hover {
    color: var(--sage-green);
}

.faq-section .card-body {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(125, 155, 118, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.btn-submit {
    background-color: var(--sage-green);
    color: var(--bg-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--sage-green-dark);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sage-green-light);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.info-box {
    background-color: var(--bg-cream);
    border-left: 4px solid var(--sage-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: var(--sage-green-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.cultural-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cultural-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cultural-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cultural-item-content {
    padding: 1.5rem;
}

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

.list-styled li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.list-styled li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--sage-green);
    border-radius: 50%;
}

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
}

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

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--sage-green-dark);
}

.policy-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cookie-banner a {
    color: var(--sage-green-light);
}

.btn-cookie {
    background-color: var(--sage-green);
    color: var(--bg-white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: var(--sage-green-dark);
}

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

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

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

    h2 {
        font-size: 2rem;
    }

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

    .section {
        padding: 5rem 0;
    }

    .cultural-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 6rem 0;
    }
}
