:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-section: #FAFAFA;
    --border-color: #E0E0E0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

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

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

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

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    padding: 15px 0;
}

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

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.nav-link {
    color: var(--text-medium) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

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

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

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

.section {
    padding: 60px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 15px auto 0;
}

.content-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.content-card img {
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.content-card p {
    color: var(--text-medium);
}

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

.icon-box svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.info-table th,
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.info-table tbody tr:hover {
    background-color: var(--bg-light);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.btn-read-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-read-more:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

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

.faq-section .card {
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.disclaimer-box {
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer-box h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.disclaimer-box p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-info {
    padding: 40px;
}

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

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--text-medium);
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 0 30px;
}

footer h5 {
    color: var(--bg-white);
    font-weight: 600;
    margin-bottom: 20px;
}

footer p,
footer a {
    color: #B0B0B0;
}

footer a:hover {
    color: var(--primary-light);
}

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

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #424242;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
}

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

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

.cookie-banner p {
    color: var(--bg-light);
    margin-bottom: 15px;
}

.cookie-banner .btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

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

.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    margin-bottom: 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 15px;
}

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

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

.legal-content {
    padding: 40px 0;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    color: var(--text-medium);
}

.legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.infographic-section {
    text-align: center;
}

.infographic-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.history-timeline {
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-content img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.fade-in.visible {
    opacity: 1;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 15px;
    }
}
