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

body {
    font-family: 'Roboto Condensed', 'Helvetica', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #0288D1;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #0288D1;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0288D1;
    text-decoration: none;
    transition: all 0.3s linear;
}

a:hover {
    color: #01579B;
    text-decoration: none;
}

#main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.09);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0288D1;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.navbar-brand:hover {
    color: #01579B;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s linear;
}

.nav-link:hover {
    color: #0288D1;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.hero-content h1 {
    color: #0288D1;
}

.hero-content .lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.disclaimer-text {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    margin-top: 20px;
}

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

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
    transition: all 0.3s linear;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.info-box {
    background: #E3F2FD;
    border-left: 4px solid #0288D1;
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 16px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s linear;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
    border-color: #0288D1;
}

.faq-item h3 {
    font-size: 22px;
    color: #0288D1;
    margin-bottom: 15px;
}

.faq-item p {
    margin-bottom: 0;
    color: #555;
}

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

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

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

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s linear;
}

.contact-form .form-control:focus {
    border-color: #0288D1;
    box-shadow: 0 0 0 0.2rem rgba(2, 136, 209, 0.15);
}

.btn-primary {
    background-color: #0288D1;
    border-color: #0288D1;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s linear;
}

.btn-primary:hover {
    background-color: #01579B;
    border-color: #01579B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

.disclaimer-small {
    font-size: 14px;
    color: #666;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.09);
}

#main-footer {
    background: #263238;
    color: #ffffff;
    padding: 50px 0 20px;
}

#main-footer h4 {
    color: #0288D1;
    font-size: 22px;
    margin-bottom: 20px;
}

#main-footer p {
    color: #b0bec5;
    font-size: 15px;
}

#main-footer a {
    color: #b0bec5;
    transition: all 0.3s linear;
}

#main-footer a:hover {
    color: #0288D1;
}

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

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

.footer-disclaimer {
    font-size: 13px;
    color: #90a4ae;
    margin-top: 15px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #37474f;
}

.footer-bottom p {
    color: #78909c;
    font-size: 14px;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #263238;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 15px;
}

#cookie-accept {
    flex-shrink: 0;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.policy-modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    max-height: 80vh;
    overflow-y: auto;
}

.policy-close {
    color: #999;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s linear;
}

.policy-close:hover {
    color: #0288D1;
}

#policy-body h2 {
    margin-top: 30px;
}

#policy-body h2:first-child {
    margin-top: 0;
}

#policy-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.thank-you-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thank-you-close {
    color: #999;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s linear;
}

.thank-you-close:hover {
    color: #0288D1;
}

.thank-you-modal-content h2 {
    color: #0288D1;
    margin-bottom: 20px;
}

.thank-you-modal-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    body {
        font-size: 16px;
    }

    .hero-section {
        min-height: 70vh;
        margin-top: 60px;
    }

    .hero-content {
        padding: 40px 15px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

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

    .content-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 25px;
    }

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

    .policy-modal-content {
        width: 95%;
        padding: 25px;
        margin: 10% auto;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .nav-link {
        padding: 10px;
    }
}

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

    h2 {
        font-size: 24px;
    }

    .btn-primary {
        padding: 10px 30px;
        font-size: 16px;
    }
}
