:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --text-dark: #212121;
    --text-medium: #616161;
    --text-light: #9E9E9E;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-gray: #EEEEEE;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

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

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

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

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

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

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);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 0.75rem 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;
}

.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(--primary-color) !important;
}

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

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

.section {
    padding: 5rem 0;
}

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

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

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

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.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;
}

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

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

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

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.info-table th {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
}

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

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

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

.content-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.content-list li:last-child {
    border-bottom: none;
}

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

.two-column-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.two-column-layout .content-col {
    flex: 1;
}

.two-column-layout .image-col {
    flex: 0 0 40%;
}

.two-column-layout .image-col img {
    width: 100%;
    border-radius: 12px;
}

.two-column-layout.reverse {
    flex-direction: row-reverse;
}

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

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

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

.accordion-custom .btn-link:hover {
    color: var(--primary-color);
}

.accordion-custom .btn-link::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion-custom .btn-link[aria-expanded="true"]::after {
    content: '-';
}

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

.glossary-item {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.glossary-item h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.glossary-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    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 var(--primary-light);
}

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

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info .icon {
    color: var(--primary-color);
    font-weight: bold;
}

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

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

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

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

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

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

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

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

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

.footer-links a {
    font-size: 0.9rem;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.educational-notice {
    background-color: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

.educational-notice p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.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: var(--bg-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-accept {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-decline {
    background-color: transparent;
    border-color: var(--bg-light);
    color: var(--bg-light);
}

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

.modal-policy .modal-content {
    border-radius: 12px;
    border: none;
}

.modal-policy .modal-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.modal-policy .modal-header .close {
    color: var(--bg-white);
    opacity: 1;
}

.modal-policy .modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-policy .modal-body h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-policy .modal-body h3:first-child {
    margin-top: 0;
}

.modal-policy .modal-body p {
    font-size: 0.9rem;
}

.success-message {
    display: none;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.success-message.show {
    display: block;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--bg-white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .two-column-layout .image-col {
        flex: 1;
        order: -1;
    }
    
    .two-column-layout.reverse {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .card-custom {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .info-table {
        font-size: 0.85rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary-custom {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
}
