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

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

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

.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: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

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

.hero-content {
    margin-bottom: 40px;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #5a5a5a;
    font-weight: 400;
}

.hero-image {
    margin: 40px 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.narrow-text {
    max-width: 100%;
}

.story-intro {
    margin-top: 50px;
}

.opening-line {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #3a3a3a;
}

.narrow-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.narrow-text h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.narrow-text h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2a2a2a;
}

.narrow-text ul {
    margin: 20px 0 30px 30px;
    font-size: 1.05rem;
}

.narrow-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.inline-image {
    margin: 40px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.inline-cta {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border-left: 3px solid #ccc;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

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

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.contact-section {
    margin-top: 60px;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.closing-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
}

.final-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

.footer-disclaimer h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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

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

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-cta-section {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    margin-top: 50px;
}

.contact-content {
    margin-top: 30px;
}

.contact-info {
    margin: 25px 0;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 10px;
}

.legal-text {
    margin: 25px 0;
}

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

.thanks-section {
    text-align: center;
    padding: 60px 30px;
}

.thanks-message {
    margin: 40px 0;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.selected-service-highlight {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.step {
    margin: 30px 0;
    padding-left: 30px;
}

.step h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2a2a2a;
}

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

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

    .article-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .narrow-text h2 {
        font-size: 1.6rem;
    }

    .narrow-text p {
        font-size: 1rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .sticky-cta a {
        display: block;
        text-align: center;
    }

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