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

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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 1px solid #ddd;
}

.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;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-menu a {
    color: #444;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.editorial-content {
    background-color: #ffffff;
    padding: 50px 60px;
}

.hero-editorial {
    margin: -50px -60px 50px;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 60px 50px 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.95;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.header-lead {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.content-flow {
    font-size: 19px;
    line-height: 1.8;
}

.opening-line {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 500;
}

.content-flow p {
    margin-bottom: 25px;
}

.content-flow h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.content-flow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

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

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

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

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

.btn-text-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 2px solid #0066cc;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #004499;
    border-bottom-color: #004499;
}

.content-card-inline {
    background-color: #f8f8f8;
    padding: 30px 35px;
    margin: 30px 0;
    border-left: 4px solid #333;
}

.content-card-inline h3 {
    margin-top: 0;
    font-size: 22px;
}

.content-card-inline p {
    margin-bottom: 0;
    font-size: 18px;
}

blockquote.testimonial-inline {
    margin: 45px 0;
    padding: 30px 40px;
    background-color: #fff;
    border-left: 5px solid #ddd;
    font-size: 21px;
    line-height: 1.6;
    font-style: italic;
    color: #444;
}

blockquote.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: #777;
}

.services-embedded {
    margin: 50px -30px;
}

.service-story-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

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

.service-story-content {
    padding: 35px 40px;
}

.service-story-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    color: #1a1a1a;
}

.service-story-content p {
    margin-bottom: 18px;
    font-size: 17px;
}

.service-story-content ul {
    margin: 20px 0 20px 25px;
    font-size: 17px;
    line-height: 1.7;
}

.service-story-content ul li {
    margin-bottom: 10px;
}

.price-reveal {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 25px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service-select {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-section-embedded {
    margin: 60px 0;
    padding: 45px 40px;
    background-color: #f5f5f5;
    border-top: 3px solid #333;
}

.form-section-embedded h2 {
    margin-top: 0;
    font-size: 32px;
}

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

.selected-service-display {
    background-color: #e8f4f8;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-left: 4px solid #0066cc;
    font-size: 18px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 17px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.disclaimer-section {
    margin: 50px 0;
    padding: 30px;
    background-color: #fffbf0;
    border: 1px solid #e6d8a0;
    font-size: 16px;
    line-height: 1.6;
}

.disclaimer-section p {
    margin-bottom: 0;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 30px 30px;
}

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

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

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

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

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

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

.footer-section ul li a {
    color: #d0d0d0;
    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-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-content p a {
    color: #0066cc;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #f0f0f0;
    color: #333;
}

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

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.thanks-message {
    text-align: center;
    padding: 60px 40px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 48px;
    color: #22c55e;
    border: 3px solid #22c55e;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-message h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #f0f9ff;
    padding: 20px 25px;
    margin: 30px 0;
    border-left: 4px solid #0066cc;
    text-align: left;
}

.service-confirmation p {
    margin: 0;
    font-size: 18px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #004499;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    margin-bottom: 12px;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookie-table tr:nth-child(even) {
    background-color: #fafafa;
}

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

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

    .editorial-container {
        padding: 30px 20px 50px;
    }

    .editorial-content {
        padding: 30px 25px;
    }

    .hero-editorial {
        margin: -30px -25px 30px;
    }

    .hero-overlay {
        padding: 40px 25px 25px;
    }

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

    .hero-lead {
        font-size: 17px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .opening-line {
        font-size: 20px;
    }

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

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

    .services-embedded {
        margin: 40px 0;
    }

    .service-story-content {
        padding: 25px 20px;
    }

    .form-section-embedded {
        padding: 30px 20px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}