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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #e8e8e8;
    font-weight: 300;
    font-style: italic;
}

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

.page-header {
    background-color: #f9f9f9;
    padding: 80px 30px 60px;
    border-bottom: 1px solid #e8e8e8;
}

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

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

.intro-section,
.story-section,
.about-intro,
.services-intro,
.contact-info-section,
.location-section,
.approach-section,
.process-section {
    padding: 60px 0;
}

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

.story-section h2,
.about-intro h2,
.team-values h2,
.approach-section h2,
.services-preview h2,
.form-section h2,
.cta-section h2,
.process-section h2,
.faq-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 45px;
    color: #1a1a1a;
}

.story-section p,
.about-intro p,
.approach-section p,
.location-section p,
.services-intro p,
.contact-info-section p,
.process-section p {
    margin-bottom: 25px;
    color: #3a3a3a;
}

.visual-break {
    width: 100%;
    margin: 60px 0;
    background-color: #f5f5f5;
}

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

.services-preview {
    background-color: #fafafa;
    padding: 80px 0;
}

.section-intro {
    font-size: 20px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.service-card-inline {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.service-card-inline.reverse {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.service-price,
.service-price-large {
    font-size: 22px;
    font-weight: 600;
    color: #2a5a8a;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.service-price-large {
    font-size: 26px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2a5a8a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    padding: 15px 40px;
    background-color: #2a5a8a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1e4567;
}

.selected-service-display {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f4f8;
    border-left: 4px solid #2a5a8a;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.cta-section {
    text-align: center;
    padding: 80px 30px;
    background-color: #fafafa;
}

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

.cta-section p {
    font-size: 19px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.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;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
}

.cookie-content a {
    color: #88c0e8;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: opacity 0.2s;
}

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

.cookie-reject {
    background-color: #666;
    color: #ffffff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.contact-details {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

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

.process-list li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.process-list strong {
    color: #1a1a1a;
}

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

.thanks-details {
    margin: 40px 0;
    padding: 25px;
    background-color: #e8f4f8;
    border-left: 4px solid #2a5a8a;
}

.thanks-details p {
    font-size: 17px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.next-steps {
    margin: 60px 0;
}

.additional-resources {
    margin: 60px 0;
}

.resource-links {
    margin-top: 25px;
    padding-left: 25px;
}

.resource-links li {
    margin-bottom: 15px;
}

.resource-links a {
    color: #2a5a8a;
    text-decoration: none;
    font-size: 17px;
}

.resource-links a:hover {
    text-decoration: underline;
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.legal-section ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-section a {
    color: #2a5a8a;
    text-decoration: underline;
}

.last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.back-link {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

.back-link a {
    color: #2a5a8a;
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.back-link a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .nav-links {
        gap: 20px;
    }

    .service-card-inline,
    .service-card-inline.reverse {
        flex-direction: column;
    }

    .service-image-wrapper {
        width: 100%;
    }

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

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

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

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

    body {
        font-size: 16px;
    }
}
