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

:root {
    --primary-color: #2c5f7e;
    --secondary-color: #e8965c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--background-white);
}

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

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

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

.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: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background: #fff3cd;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 15px;
}

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

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-editorial {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.hero-editorial img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    margin: 30px 0;
    background-color: #e8f0f5;
}

.content-editorial {
    font-size: 18px;
    line-height: 1.8;
    margin: 40px 0;
}

.content-editorial h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: 400;
}

.content-editorial h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 500;
}

.content-editorial p {
    margin-bottom: 20px;
}

.content-editorial img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    margin: 30px 0;
    background-color: #e8f0f5;
}

.inline-cta {
    background: var(--background-light);
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 40px 0;
    text-align: center;
}

.inline-cta h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.inline-cta p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.cta-button:hover {
    background: #234a63;
}

.service-card-editorial {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    margin: 30px 0;
    transition: box-shadow 0.3s;
}

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

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

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

.service-card-editorial p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-section {
    background: var(--background-light);
    padding: 50px 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.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 {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.about-section {
    padding: 60px 0;
}

.about-section img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 4px;
    margin: 30px 0;
    background-color: #e8f0f5;
}

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

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.contact-info strong {
    display: inline-block;
    min-width: 140px;
}

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

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

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

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

.footer-section a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--border-color);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    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-text p {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #45a049;
}

.cookie-reject {
    background: #ddd;
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: #ccc;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-page p {
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

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

.thanks-page {
    padding: 80px 0;
    text-align: center;
}

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

.thanks-page p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-box {
    background: var(--background-light);
    border: 2px solid var(--success-color);
    border-radius: 4px;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
}

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

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

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

    .content-editorial {
        font-size: 17px;
    }

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

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

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