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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6fa8;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --error-color: #e74c3c;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.hero-editorial {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 24px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-editorial img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    object-fit: cover;
}

.content-flow {
    max-width: 720px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.content-flow h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: var(--text-dark);
    line-height: 1.3;
}

.content-flow h3 {
    font-size: 24px;
    margin: 36px 0 16px;
    color: var(--primary-color);
}

.content-flow p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.content-flow ul {
    margin: 24px 0;
    padding-left: 24px;
}

.content-flow li {
    margin-bottom: 12px;
    font-size: 17px;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
    background-color: var(--bg-light);
}

.cta-inline {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 32px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 720px;
    margin: 48px auto;
    padding: 0 24px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.form-section {
    background-color: var(--bg-light);
    padding: 60px 24px;
    margin: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 32px;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 6px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.submit-btn:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 48px 24px 24px;
}

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

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

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

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

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

.page-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.page-content li {
    margin-bottom: 8px;
}

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

.contact-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

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

.contact-card p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-page {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

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

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

.thanks-page .cta-inline {
    margin-top: 32px;
}

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

    .hero-editorial .subtitle {
        font-size: 18px;
    }

    .content-flow h2 {
        font-size: 26px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
