:root {
    --primary-color: #5A8F66;
    --primary-dark: #4A7A56;
    --primary-light: #6BA077;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

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

.navbar {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(90,143,102,0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    max-width: 540px;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.section {
    padding: 4rem 0;
}

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

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

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

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

.section-title p {
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card-custom {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
}

.card-custom:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.card-custom p {
    font-size: 0.95rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(90,143,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-block.reverse {
    flex-direction: column;
}

.content-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

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

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.info-box {
    background-color: rgba(90,143,102,0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.disclaimer-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-box h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    font-size: 0.875rem;
    margin: 0;
}

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

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

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

.faq-section .btn-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.faq-section .card-body {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-muted);
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.contact-section {
    padding: 4rem 0;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item span {
    color: var(--text-muted);
}

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

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(90,143,102,0.15);
}

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

.resources-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.resource-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
}

.resource-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.resource-card-content {
    padding: 1.25rem;
}

.resource-card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.resource-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.resource-card-content a {
    font-weight: 500;
    font-size: 0.9rem;
}

footer {
    background-color: #1a1a1a;
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    text-align: center;
}

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

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

.cookie-banner p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    font-size: 0.9rem;
}

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

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

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

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

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.page-content p {
    margin-bottom: 1rem;
}

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

.page-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

    h2 {
        font-size: 2.25rem;
    }

    .hero-section {
        padding: 6rem 0;
    }

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

    .section {
        padding: 5rem 0;
    }

    .content-block {
        flex-direction: row;
        align-items: center;
    }

    .content-block.reverse {
        flex-direction: row-reverse;
    }

    .content-image,
    .content-text {
        flex: 1;
    }

    .content-image {
        padding-right: 2rem;
    }

    .content-block.reverse .content-image {
        padding-right: 0;
        padding-left: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section {
        padding: 6rem 0;
    }
}
