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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    padding-top: 80px;
}

header {
    background: #2d3748;
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    letter-spacing: 1px;
}

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

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

nav a:hover {
    color: #cbd5e0;
}

.hero {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.section {
    margin-bottom: 70px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section h2 {
    font-size: 36px;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #4a5568;
    padding-bottom: 15px;
}

.section h3 {
    font-size: 26px;
    color: #4a5568;
    margin: 35px 0 20px;
}

.section p {
    margin-bottom: 18px;
    font-size: 17px;
    text-align: justify;
    color: #4a5568;
}

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

.image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.three-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-soft {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 70px 0;
}

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

.cta-soft a {
    display: inline-block;
    background: white;
    color: #2d3748;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 25px;
    transition: background 0.3s, color 0.3s;
}

.cta-soft a:hover {
    background: #cbd5e0;
    color: #1a202c;
}

footer {
    background: #1a202c;
    color: white;
    padding: 50px 20px 25px;
    margin-top: 100px;
}

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

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

.footer-section h3 {
    color: #cbd5e0;
    margin-bottom: 20px;
    font-size: 20px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 14px;
    color: #cbd5e0;
}

.contact-form {
    max-width: 650px;
    margin: 50px auto;
    background: #f7fafc;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a5568;
}

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

.btn-submit {
    background: #2d3748;
    color: white;
    padding: 14px 45px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #4a5568;
}

.disclaimer-box {
    background: #edf2f7;
    border-left: 5px solid #4a5568;
    padding: 25px;
    margin: 35px 0;
    border-radius: 5px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: white;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    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-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #4a5568;
    color: white;
}

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

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

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

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

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

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

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

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

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

    .section {
        padding: 25px;
    }
}
