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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

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

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

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

.hero-text {
    max-width: 800px;
    margin: -100px auto 0;
    position: relative;
    background-color: #fff;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

.page-header {
    padding: 80px 40px 40px;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.page-header .content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-header .lead {
    font-size: 22px;
    color: #555;
    line-height: 1.5;
}

.story-intro {
    padding: 60px 40px;
}

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

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

.content-narrow h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 25px;
    color: #333;
}

.content-narrow ul {
    margin: 25px 0 25px 40px;
    color: #333;
}

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

.content-narrow ol {
    margin: 25px 0 25px 40px;
    color: #333;
}

.content-narrow ol li {
    margin-bottom: 15px;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.cta-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
}

.btn-text {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #555;
}

.quote-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #f4f4f4;
    border-left: 5px solid #1a1a1a;
}

.quote-block blockquote {
    font-size: 24px;
    line-height: 1.5;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background-color: #fafafa;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

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

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
}

.btn-select {
    background-color: #1a1a1a;
    color: #fff;
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

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

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

.service-detail {
    margin-bottom: 70px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-image {
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

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

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 25px;
    font-family: 'Arial', sans-serif;
}

.service-info ul {
    margin: 20px 0 20px 25px;
}

.service-info ul li {
    margin-bottom: 10px;
    color: #444;
}

.testimonial {
    margin: 40px 0;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-container {
    margin: 60px 0;
    padding: 45px;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
}

.form-container.hidden {
    display: none;
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.selected-service-display {
    margin-bottom: 30px;
    font-size: 17px;
    color: #555;
    padding: 15px;
    background-color: #fff;
    border-left: 4px solid #1a1a1a;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #fff;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #fff;
    padding: 16px 40px;
    border: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cta-final {
    margin: 70px 0;
    padding: 50px;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.cta-final h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border: 2px solid #fff;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.disclaimer {
    margin: 60px 0;
    padding: 30px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.disclaimer p {
    margin: 0;
}

.contact-info-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

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

.contact-item p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content p {
    margin-bottom: 20px;
    color: #444;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 35px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #444;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.thanks-page {
    text-align: center;
    padding: 80px 40px;
}

.thanks-icon {
    font-size: 80px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.thanks-page .lead {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-message {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: left;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.thanks-next-steps {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    margin-left: 25px;
}

.thanks-next-steps li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #444;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    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;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

    .hero-image-container {
        height: 400px;
    }

    .hero-text {
        margin: -60px 20px 0;
        padding: 40px 30px;
    }

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

    .hero-text .lead {
        font-size: 18px;
    }

    .page-header {
        padding: 50px 20px 30px;
    }

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

    .page-header .lead {
        font-size: 18px;
    }

    .story-intro {
        padding: 40px 20px;
    }

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

    .content-narrow h3 {
        font-size: 20px;
    }

    body {
        font-size: 16px;
    }

    .cta-final {
        padding: 35px 25px;
    }

    .cta-final h3 {
        font-size: 26px;
    }

    .form-container {
        padding: 30px 20px;
    }

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

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

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}