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

body {
    font-family: 'Lato', sans-serif;
    background-color: #E0E2EB;
    color: #2E3A4D;
    line-height: 1.6;
}

header {
    background-color: #2E3A4D;
    color: #E0E2EB;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #A7C5C5;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #D1D8D8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover,
nav a.active {
    color: #A7C5C5;
}

.hero {
    background-color: #2E3A4D;
    color: #E0E2EB;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #D1D8D8;
}

.panel {
    background-color: #fff;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.panel-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E3A4D;
    margin-bottom: 1.5rem;
}

.panel-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #A7C5C5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.panel-text p {
    color: #2E3A4D;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.panel-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.panel-text li {
    color: #2E3A4D;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.panel-text li:before {
    content: "▪";
    color: #A7C5C5;
    position: absolute;
    left: 0;
}

.panel-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    max-height: 400px;
    object-fit: cover;
}

.panel.reverse .panel-content {
    direction: rtl;
}

.panel.reverse .panel-text {
    direction: ltr;
}

.panel.full-width {
    background: linear-gradient(135deg, #2E3A4D 0%, #3d4a5a 100%);
    color: #E0E2EB;
    text-align: center;
    padding: 5rem 2rem;
}

.panel.full-width h2 {
    color: #A7C5C5;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.panel.full-width p {
    color: #D1D8D8;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #A7C5C5;
    color: #2E3A4D;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #A7C5C5;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.btn:hover {
    background-color: #2E3A4D;
    color: #A7C5C5;
}

.btn-secondary {
    background-color: transparent;
    color: #A7C5C5;
}

.btn-secondary:hover {
    background-color: #A7C5C5;
    color: #2E3A4D;
}

.disclaimer {
    background-color: #D1D8D8;
    color: #2E3A4D;
    padding: 2rem;
    border-left: 4px solid #A7C5C5;
    margin: 3rem 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.8;
}

footer {
    background-color: #2E3A4D;
    color: #D1D8D8;
    padding: 3rem 0;
    text-align: center;
    margin-top: 6rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    color: #A7C5C5;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-divider {
    border-top: 1px solid #A7C5C5;
    margin: 2rem 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2E3A4D;
    color: #D1D8D8;
    padding: 1.5rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept {
    background-color: #A7C5C5;
    color: #2E3A4D;
}

.cookie-accept:hover {
    background-color: #8db3b3;
}

.cookie-decline {
    background-color: transparent;
    color: #A7C5C5;
    border: 1px solid #A7C5C5;
}

.cookie-decline:hover {
    background-color: #A7C5C5;
    color: #2E3A4D;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.contact-info,
.contact-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2E3A4D;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #A7C5C5;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #2E3A4D;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2E3A4D;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #D1D8D8;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #2E3A4D;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A7C5C5;
    box-shadow: 0 0 0 3px rgba(167, 197, 197, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #A7C5C5;
    color: #2E3A4D;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #A7C5C5;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    width: 100%;
}

.form-btn:hover {
    background-color: #2E3A4D;
    color: #A7C5C5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #2E3A4D;
    margin-bottom: 0.8rem;
}

.blog-card p {
    color: #2E3A4D;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    font-size: 0.85rem;
    color: #A7C5C5;
    margin-bottom: 1rem;
}

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

.blog-post {
    background-color: #fff;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #2E3A4D;
    margin-bottom: 1rem;
}

.blog-post .blog-meta {
    display: block;
    margin-bottom: 2rem;
}

.blog-post p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid #D1D8D8;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #E0E2EB;
    cursor: pointer;
    font-weight: 600;
    color: #2E3A4D;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #D1D8D8;
}

.accordion-toggle {
    font-size: 1.5rem;
    color: #A7C5C5;
}

.accordion-content {
    display: none;
    padding: 1.5rem;
    color: #2E3A4D;
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accent-box {
    background-color: #E0E2EB;
    padding: 2rem;
    border-left: 4px solid #A7C5C5;
    margin: 2rem 0;
    border-radius: 4px;
}

.accent-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2E3A4D;
    margin-bottom: 1rem;
}

.accent-box ul {
    list-style: none;
    padding-left: 0;
}

.accent-box li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.accent-box li:before {
    content: "▪";
    color: #A7C5C5;
    position: absolute;
    left: 0;
}

.centered {
    text-align: center;
}

.decorative-line {
    height: 2px;
    background: linear-gradient(to right, transparent, #A7C5C5, transparent);
    margin: 3rem 0;
}

.thank-you-section {
    background: linear-gradient(135deg, #2E3A4D 0%, #3d4a5a 100%);
    color: #E0E2EB;
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #A7C5C5;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: #D1D8D8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

    nav ul {
        gap: 1rem;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2E3A4D;
        padding: 1rem;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .panel.reverse .panel-content {
        direction: ltr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}
