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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.editorial-content {
    background-color: #fafafa;
}

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

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #2c3e50;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 60px 30px 40px;
}

.hero-text-overlay h1 {
    max-width: 700px;
    margin: 0 auto;
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 700;
}

.intro-section {
    padding: 40px 0 80px;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 500;
}

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

.narrow-content h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333;
}

.inline-cta {
    margin: 40px 0;
    padding: 25px;
    background-color: #f0f4f8;
    border-left: 4px solid #3498db;
}

.cta-link {
    font-size: 19px;
    color: #2980b9;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: color 0.2s;
}

.cta-link:hover {
    color: #1a5276;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.editorial-list {
    margin: 25px 0 25px 30px;
    font-size: 18px;
    color: #333;
}

.editorial-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.editorial-quote {
    margin: 45px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 3px solid #34495e;
}

.editorial-quote p {
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 15px;
}

.editorial-quote cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.services-embed {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.service-card {
    margin: 35px 0;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.service-card h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.contact-form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.editorial-form {
    margin-top: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #555;
}

.submit-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.disclaimer-text {
    margin-top: 50px;
    padding: 20px;
    background-color: #fef9e7;
    border-left: 3px solid #f39c12;
    font-size: 15px;
    color: #7d6608;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: #3498db;
}

.footer-copyright {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    flex: 1;
    min-width: 250px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #229954;
}

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

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

.contact-info-block {
    margin: 35px 0;
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
}

.contact-info-block:last-of-type {
    border-bottom: none;
}

.email-display {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
}

.note-text {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.no-link {
    color: #2c3e50;
}

.last-updated {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.thanks-content {
    margin-top: 40px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.thanks-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.2s;
}

.thanks-link:hover {
    background-color: #2980b9;
}

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

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

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

    .lead-text {
        font-size: 19px;
    }

    .narrow-content p {
        font-size: 17px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}