:root {
    --primary-color: #1976D2;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --background: #FFFFFF;
    --text-primary: #212121;
    --text-secondary: #757575;
    --border-color: #E0E0E0;
    --light-bg: #F5F9FC;
    --shadow: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

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

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

p {
    margin-bottom: 1rem;
    font-size: 18px;
    line-height: 1.6;
}

.lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -4px 16px var(--shadow);
    z-index: 9999;
    padding: 20px;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 2px 8px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease-in-out;
}

.navbar-brand:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.nav-link {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.35s ease-in-out;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

main {
    margin-top: 90px;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-section {
    padding: 80px 0;
}

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

.section-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: all 0.35s ease-in-out;
}

.section-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow);
}

.section-image-small {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: all 0.35s ease-in-out;
    margin-bottom: 20px;
}

.section-image-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow);
}

.float-right {
    float: right;
}

.faq-item {
    background: var(--background);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.35s ease-in-out;
}

.faq-item:hover {
    box-shadow: 0 4px 16px var(--shadow);
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.info-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid var(--primary-light);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    background: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.35s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-info {
    background: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    color: var(--background);
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer h3 {
    color: var(--background);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.35s ease-in-out;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--background);
    padding-left: 5px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.footer-disclaimer {
    color: var(--background);
    font-weight: 600;
    margin-top: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    background: var(--background);
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 1;
    transition: all 0.35s ease-in-out;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content {
    padding: 40px;
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-content h3 {
    color: var(--primary-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .content-section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 50px 0;
    }

    .section-image-small {
        margin: 0 auto 20px auto;
        display: block;
    }

    .float-right {
        float: none;
        margin-left: 0;
    }
}

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

    h2 {
        font-size: 26px;
    }

    .hero-section h1 {
        font-size: 30px;
    }

    p, .lead {
        font-size: 16px;
    }

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

    .modal-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
