:root {
    --forest-green: #228B22;
    --forest-green-dark: #1a6b1a;
    --forest-green-light: #2ea82e;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

* {
    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-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    padding-top: 70px;
}

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

h1 {
    font-size: 2.5rem;
}

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

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

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

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

a:hover {
    color: var(--forest-green-dark);
    text-decoration: underline;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.navbar-brand img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

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

.navbar-nav .nav-link:hover {
    color: var(--forest-green) !important;
}

.navbar-toggler {
    border-color: var(--forest-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='%23228B22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

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

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

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

.section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-title {
    color: var(--forest-green);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--forest-green);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

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

.content-block h3 {
    color: var(--forest-green);
}

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

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

.info-card h3 {
    color: var(--forest-green);
}

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

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

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

.disclaimer-box h3 {
    color: var(--forest-green);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

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

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

.faq-section .btn-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section .btn-link:hover {
    color: var(--forest-green);
    text-decoration: none;
}

.faq-section .btn-link::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--forest-green);
}

.faq-section .btn-link[aria-expanded="true"]::after {
    content: "-";
}

.faq-section .card-body {
    padding: 0 1.25rem 1.25rem;
}

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

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

.form-control:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
    outline: none;
}

.btn-primary {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--forest-green-dark);
    border-color: var(--forest-green-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--forest-green);
    color: var(--bg-white);
    text-decoration: none;
}

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

.cta-section h2 {
    color: var(--bg-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.cta-section .btn-outline {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-section .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--forest-green);
}

.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

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

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer a:hover {
    color: var(--forest-green-light);
    text-decoration: none;
}

.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);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    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 .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

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

.page-content h2 {
    color: var(--forest-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

    h2 {
        font-size: 2.25rem;
    }

    .routine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .routine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 60px;
    }

    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-image {
        margin-top: 2rem;
    }

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