:root {
    --primary-color: #4C7A6B;
    --primary-dark: #3d6256;
    --primary-light: #e8f0ed;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #fafbfc;
    --border-color: #e9ecef;
    --white: #ffffff;
}

* {
    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.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

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

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

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

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

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

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

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
}

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

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

body {
    padding-top: 76px;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

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

.hero-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 4rem 0;
}

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

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

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

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.card-custom:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-custom h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.content-image {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.content-image-left {
    max-width: 300px;
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.content-image-right {
    max-width: 300px;
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.content-block::after {
    content: '';
    display: table;
    clear: both;
}

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

.list-styled li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.list-styled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 3rem 0;
}

.table-custom {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.table-custom thead {
    background-color: var(--primary-light);
}

.table-custom thead th {
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table-custom tbody td {
    padding: 1rem;
    border-color: var(--border-color);
    color: var(--text-light);
}

.accordion .card {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

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

.accordion .card-header button {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .card-header button:hover {
    color: var(--primary-color);
}

.accordion .card-header button::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.accordion .card-header button[aria-expanded="true"]::after {
    content: '-';
}

.accordion .card-body {
    padding: 1.25rem;
    color: var(--text-light);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

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

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

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

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 122, 107, 0.1);
    outline: none;
}

.contact-info {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
}

.contact-info-item {
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--text-light);
}

.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

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

.disclaimer-box h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

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

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

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn {
    margin-left: 1rem;
}

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

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

.page-header p {
    margin-bottom: 0;
}

.breadcrumb-custom {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--text-light);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary-color);
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.policy-content p,
.policy-content li {
    color: var(--text-light);
}

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

.policy-content ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .content-image-left,
    .content-image-right {
        float: none;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
    }
    
    .card-custom {
        padding: 1.25rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
    
    h1 {
        font-size: 1.625rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .cookie-banner .btn {
        margin-left: 0;
        margin-top: 0.75rem;
        display: block;
        width: 100%;
    }
}
