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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #1e293b;
    background-color: #f1f5f9;
    padding-top: 75px;
}

header {
    background: #0f172a;
    color: white;
    padding: 18px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 110px 20px;
    text-align: center;
    margin-bottom: 55px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero p {
    font-size: 21px;
    max-width: 750px;
    margin: 0 auto;
}

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

.section {
    margin-bottom: 75px;
    background: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.section h2 {
    font-size: 34px;
    color: #0f172a;
    margin-bottom: 28px;
    text-align: center;
    border-bottom: 4px solid #1e293b;
    padding-bottom: 18px;
}

.section h3 {
    font-size: 25px;
    color: #334155;
    margin: 32px 0 18px;
}

.section p {
    margin-bottom: 16px;
    font-size: 17px;
    text-align: justify;
}

.image-block {
    margin: 32px 0;
    text-align: center;
}

.image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.three-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    margin: 32px 0;
}

.three-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.cta-soft {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 55px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 75px 0;
}

.cta-soft h2 {
    color: white;
    margin-bottom: 22px;
    border: none;
    padding: 0;
}

.cta-soft a {
    display: inline-block;
    background: white;
    color: #0f172a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 22px;
    transition: transform 0.3s;
}

.cta-soft a:hover {
    transform: translateY(-2px);
}

footer {
    background: #0f172a;
    color: white;
    padding: 45px 20px 22px;
    margin-top: 90px;
}

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

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

.footer-section h3 {
    color: #cbd5e1;
    margin-bottom: 18px;
    font-size: 19px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 9px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #cbd5e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
    color: #cbd5e1;
}

.contact-form {
    max-width: 620px;
    margin: 45px auto;
    background: #f8fafc;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background: #0f172a;
    color: white;
    padding: 13px 42px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1e293b;
}

.disclaimer-box {
    background: #e2e8f0;
    border-left: 5px solid #1e293b;
    padding: 22px;
    margin: 32px 0;
    border-radius: 6px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: white;
    padding: 22px;
    z-index: 10000;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.25);
    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: 18px;
}

.cookie-buttons {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 11px 22px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #1e293b;
    color: white;
}

.cookie-reject {
    background: #dc2626;
    color: white;
}

.cookie-info {
    background: transparent;
    color: white;
    border: 2px solid white;
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

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

    .hero p {
        font-size: 17px;
    }

    nav ul {
        flex-direction: column;
        gap: 11px;
    }

    .header-container {
        flex-direction: column;
        gap: 18px;
    }

    .three-images {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 28px;
    }
}
