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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #d94a3d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #f39c12;
}

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

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

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

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

.hero-editorial {
    background-color: var(--bg-light);
    padding: 60px 0 40px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.editorial-content {
    background-color: var(--bg-white);
    padding: 50px 0;
}

.editorial-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.editorial-content h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: var(--primary-color);
}

.editorial-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.inline-image {
    width: 100%;
    max-width: 650px;
    margin: 40px auto;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-cta {
    background-color: var(--bg-light);
    padding: 35px;
    margin: 45px 0;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.inline-cta h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #1e4666;
}

.secondary-button {
    background-color: var(--secondary-color);
}

.secondary-button:hover {
    background-color: #b93a2e;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

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

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
}

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

.form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 25px;
}

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

.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;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--bg-white);
}

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

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

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

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

.footer-section .email-text {
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a4a4a;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

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

.cookie-button:hover {
    opacity: 0.8;
}

.page-header {
    background-color: var(--bg-light);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-content {
    padding: 50px 0;
}

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

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

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

.page-content ul,
.page-content ol {
    margin: 15px 0 15px 30px;
}

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

.contact-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-detail {
    margin: 15px 0;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.thanks-message {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.thanks-message h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.6;
}

.reference-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.reference-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

    .editorial-content h2 {
        font-size: 28px;
    }

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

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

    .form-wrapper {
        padding: 25px;
    }
}
