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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fffe;
}

h1, h2, h3, h4 {
    font-family: Tahoma, system-ui, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #66CDAA;
    transition: all 0.35s ease;
}

a:hover {
    color: #52b896;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.btn-accept {
    background-color: #66CDAA;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.35s ease;
}

.btn-accept:hover {
    background-color: #52b896;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 205, 170, 0.3);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 18px 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #66CDAA;
    transition: all 0.35s ease;
}

.logo:hover {
    color: #52b896;
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    transition: all 0.35s ease;
}

.main-nav a:hover {
    color: #66CDAA;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #66CDAA;
    transition: width 0.35s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

main {
    margin-top: 70px;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 205, 170, 0.8), rgba(102, 205, 170, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    color: white;
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.35s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table thead {
    background-color: #66CDAA;
    color: white;
}

.table th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table td {
    padding: 12px 15px;
    border-color: #e8f9f4;
}

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

.faq-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 205, 170, 0.2);
}

.faq-item h3 {
    color: #66CDAA;
    margin-bottom: 15px;
}

.info-box {
    background-color: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.35s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 205, 170, 0.2);
}

.info-box h3 {
    color: #66CDAA;
    margin-bottom: 15px;
}

.disclaimer-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #66CDAA;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.disclaimer-box h2 {
    color: #66CDAA;
    margin-bottom: 20px;
}

.disclaimer-box ul {
    margin: 20px 0;
    padding-left: 25px;
}

.disclaimer-box li {
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #66CDAA;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #52b896;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 205, 170, 0.3);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
}

.contact-form .form-control {
    border: 2px solid #e8f9f4;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.35s ease;
}

.contact-form .form-control:focus {
    border-color: #66CDAA;
    box-shadow: 0 0 0 0.2rem rgba(102, 205, 170, 0.25);
    outline: none;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #66CDAA;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #ecf0f1;
    margin-bottom: 10px;
    transition: all 0.35s ease;
}

.footer-section a:hover {
    color: #66CDAA;
    padding-left: 5px;
}

.footer-notice {
    font-style: italic;
    color: #ecf0f1;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.35s ease;
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.35s ease;
}

.close {
    color: #95a5a6;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.35s ease;
}

.close:hover {
    color: #66CDAA;
    transform: rotate(90deg);
}

.thank-you-content {
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content h2 {
    color: #66CDAA;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content p {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        justify-content: center;
    }

    .hero-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}
