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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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: bold;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    width: 90%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c2c2c;
    font-weight: normal;
}

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

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

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

.narrow-content p {
    margin-bottom: 25px;
    font-size: 18px;
}

.narrow-content h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 25px;
    font-weight: normal;
    color: #2c2c2c;
}

.narrow-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: normal;
}

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

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

blockquote {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c2c2c;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

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

.reference-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.reference-link:hover {
    text-decoration: underline;
}

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

.cta-link {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

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

.cta-link.secondary {
    background-color: #ffffff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 14px 38px;
    margin-left: 15px;
}

.cta-link.secondary:hover {
    background-color: #f5f5f5;
}

.services-reveal {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.service-card {
    margin-bottom: 70px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

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

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 25px 0;
}

.select-service-btn {
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.order-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.submit-btn {
    padding: 16px 45px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

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

.testimonials-inline {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 3px solid #2c2c2c;
}

.testimonial-item p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.trust-building {
    padding: 60px 0;
    background-color: #ffffff;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f0f0f0;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.references-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.references-list {
    margin-top: 25px;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 15px;
    font-size: 15px;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
}

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c2c2c;
    padding: 25px 30px;
    box-shadow: 0 -2px 15px 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;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

.cookie-btn.accept {
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e5e5e5;
    color: #2c2c2c;
}

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

.page-header {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
}

.page-header h1 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 20px;
}

.about-section {
    padding: 60px 0;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 70px;
}

.service-detail-content {
    padding-top: 30px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 20px 0;
}

.cta-bottom {
    margin-top: 80px;
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-bottom h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 200px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-note {
    padding: 30px;
    background-color: #f9f9f9;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: normal;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
}

.thanks-details {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
}

.selected-service-display {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 15px;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: normal;
}

.thanks-next-steps ol {
    padding-left: 30px;
}

.thanks-next-steps li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

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

.legal-page {
    background-color: #ffffff;
}

.legal-content {
    padding: 60px 0 80px;
}

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

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

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

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

.legal-update {
    margin-top: 60px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-text-overlay {
        padding: 30px;
        bottom: 30px;
    }

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

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

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

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

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

    .service-card {
        padding: 25px;
    }

    .footer-container {
        padding: 0 20px;
        gap: 30px;
    }

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

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

    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .thanks-content h1 {
        font-size: 36px;
    }
}