* {
    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: #2c3e50;
    background-color: #fafafa;
}

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

.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.8), transparent);
    padding: 80px 30px 40px;
}

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

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

.story-intro {
    padding: 60px 0 80px;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.content-narrow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin: 50px 0 25px;
    color: #2c3e50;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: #34495e;
    font-weight: 600;
}

.inline-image-wrap {
    margin: 45px 0;
}

.inline-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.image-caption {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.insight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.insight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 20px;
}

.insight-box p {
    margin-bottom: 0;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    margin: 25px 25px 15px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px;
    font-size: 16px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 25px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    background-color: #ecf0f1;
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
    border-left: 4px solid #95a5a6;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin: 60px -30px 50px;
    border-radius: 6px;
}

.form-section h2 {
    margin-top: 0;
}

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.selected-service-display p {
    margin: 0;
    color: #155724;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #3498db;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 30px;
    margin: 50px 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    margin-top: 0;
    color: #856404;
}

.disclaimer-section p {
    color: #856404;
    font-size: 15px;
    margin-bottom: 0;
}

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

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 30px 30px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    background-color: #34495e;
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

.page-header h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 15px;
}

.header-subtitle {
    color: #bdc3c7;
    font-size: 20px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 50px 0;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
}

.info-note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-checklist {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.contact-checklist li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
}

.contact-checklist li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #3498db;
    font-size: 20px;
}

.thanks-section {
    padding: 80px 0;
    min-height: 500px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    color: #27ae60;
    font-size: 42px;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 35px;
    margin: 40px 0;
    border-radius: 6px;
    text-align: left;
}

.thanks-details p {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.thanks-details ul {
    list-style: none;
    padding-left: 0;
}

.thanks-details li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.thanks-details li:before {
    content: "✓";
    position: absolute;
    left: 5px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

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

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

.legal-page {
    padding: 40px 0 80px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin: 45px 0 20px;
    color: #34495e;
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #555;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
}

.update-date {
    color: #7f8c8d;
    font-size: 14px;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-page hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 60px 0;
}

.content-section {
    margin: 50px 0;
}

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .content-narrow {
        padding: 0 20px;
    }

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

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

    .form-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}