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

:root {
    --primary: #2c5f7e;
    --secondary: #5a8ba8;
    --accent: #d4a574;
    --text: #2d2d2d;
    --light: #f4f4f4;
    --white: #ffffff;
    --border: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

.ad-disclosure {
    background: #fff8e1;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid #f0e4c3;
    color: #856404;
}

header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero-editorial {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 5%;
}

.hero-editorial h1 {
    font-size: 46px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--primary);
    font-weight: 700;
}

.hero-editorial .intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
    background-color: var(--light);
}

.content-block {
    max-width: 720px;
    margin: 0 auto 50px;
    padding: 0 5%;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.4;
}

.content-block p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #444;
}

.inline-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin: 35px auto;
    display: block;
    background-color: var(--light);
}

.cta-inline {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 20px 0;
    transition: background 0.3s;
}

.cta-inline:hover {
    background: #c29563;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 5%;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-select {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
    width: 100%;
}

.btn-select:hover {
    background: #234a63;
}

.form-section {
    max-width: 680px;
    margin: 60px auto;
    padding: 40px;
    background: var(--light);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a63;
}

.about-split {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--light);
}

.contact-info {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 5%;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: 6px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 5%;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.disclaimer {
    max-width: 1000px;
    margin: 50px auto;
    padding: 25px;
    background: #fffbf0;
    border-left: 4px solid var(--accent);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d2d2d;
    color: var(--white);
    padding: 25px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.btn-accept {
    background: var(--accent);
    color: var(--white);
}

.btn-reject {
    background: #555;
    color: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 5%;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--light);
    border-radius: 8px;
}

.thanks-page h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-home {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #234a63;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .about-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }
}
