:root {
    --primary-color: #FF9800;
    --primary-dark: #F57C00;
    --text-dark: #212121;
    --text-medium: #616161;
    --text-light: #9E9E9E;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

* {
    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);
    padding-top: 70px;
}

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

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    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;
}

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

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

.section {
    padding: 80px 0;
}

.section-alt {
    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);
}

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-custom .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 1.5rem;
}

.card-custom .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

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

.content-image-small {
    max-width: 400px;
    width: 100%;
}

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

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

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.info-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

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

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

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

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

.accordion .btn-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.accordion .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;
    border-left: 4px solid var(--primary-color);
}

.glossary-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

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

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

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.disclaimer-box {
    background-color: #FFF3E0;
    border: 1px solid #FFE0B2;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

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

footer {
    background-color: #212121;
    color: #BDBDBD;
    padding: 60px 0 30px;
}

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

footer p, footer a {
    color: #BDBDBD;
    font-size: 0.95rem;
}

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

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

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

.footer-links a {
    color: #BDBDBD;
    transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-decline {
    background-color: transparent;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.btn-cookie-decline:hover {
    border-color: var(--text-medium);
}

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

.modal-policy .modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
}

.modal-policy .modal-title {
    font-weight: 600;
}

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

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

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

.modal-policy .modal-body p,
.modal-policy .modal-body li {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.success-message {
    display: none;
    background-color: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

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

.success-message h3 {
    color: #2E7D32;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #388E3C;
    margin-bottom: 0;
}

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

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

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-section {
        min-height: 500px;
    }

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

    .two-column-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .content-image-small {
        max-width: 100%;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }
}
