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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #f5c6cb;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.editorial-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

.page-header {
    margin-bottom: 50px;
}

.narrow-content {
    width: 100%;
}

.narrow-content h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 60px;
}

.narrow-content h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-top: 45px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 400;
}

.narrow-content h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 600;
}

.narrow-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444444;
}

.narrow-content ul {
    margin-left: 30px;
    margin-bottom: 25px;
}

.narrow-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444444;
}

.inline-image-block {
    width: 100%;
    margin: 50px 0;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.services-editorial {
    margin-top: 60px;
    margin-bottom: 60px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555555;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-select {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.service-select:hover {
    background-color: #34495e;
}

.form-section {
    margin-top: 70px;
    margin-bottom: 60px;
}

.editorial-form {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c3e50;
}

.submit-btn {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #34495e;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444444;
}

.contact-note {
    font-size: 15px;
    color: #777777;
    font-style: italic;
}

.contact-list {
    margin-left: 30px;
    margin-top: 15px;
}

.contact-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #444444;
}

.thanks-section {
    margin-top: 50px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    margin-top: 30px;
}

.thanks-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444444;
}

.thanks-list {
    margin-left: 30px;
    margin-bottom: 25px;
}

.thanks-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #444444;
}

.cta-block {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-link {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    transition: background-color 0.2s;
}

.cta-link:hover {
    background-color: #34495e;
}

.cta-link.secondary {
    background-color: #95a5a6;
}

.cta-link.secondary:hover {
    background-color: #7f8c8d;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444444;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #444444;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #34495e;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #999999;
    margin-bottom: 0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #777777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-btn.accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #34495e;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.cookie-link {
    color: #2c3e50;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .editorial-container {
        padding: 40px 20px;
    }

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

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

    .narrow-content h1 {
        font-size: 30px;
    }

    .narrow-content h2 {
        font-size: 24px;
    }

    .service-price {
        font-size: 22px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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