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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    margin-bottom: 50px;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 35px;
    background-color: #e8e4df;
    overflow: hidden;
}

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

.hero-title {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #5a5a5a;
}

.story-section {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 21px;
    line-height: 1.65;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.story-section p {
    font-size: 17px;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #ebe7e2;
}

.inline-image-block.left-aligned {
    margin: 40px 0 40px -60px;
    max-width: calc(100% + 60px);
}

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

.image-caption {
    padding: 15px;
    font-size: 14px;
    font-style: italic;
    color: #6a6a6a;
    text-align: center;
}

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

.cta-link {
    display: inline-block;
    color: #8b6f47;
    font-size: 17px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #6f5835;
}

.insight-section h2,
.story-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.services-reveal {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #d8d8d8;
}

.service-story-block {
    margin-bottom: 45px;
    padding: 30px;
    background-color: #f7f5f2;
}

.service-story-block h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.service-story-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.price-note {
    font-size: 18px;
    font-weight: 600;
    color: #8b6f47;
    margin-top: 15px;
}

.form-section {
    margin-top: 60px;
    padding: 40px 35px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b6f47;
    background-color: #ffffff;
}

.submit-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8b6f47;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #7a7a7a;
    font-style: italic;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 50px 40px 30px;
    margin-top: 80px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.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: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #9a9a9a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #5a5a5a;
    color: #ffffff;
}

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

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

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

.header-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
}

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

.service-detail-block {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-block.reverse {
    flex-direction: column-reverse;
}

.service-image-container {
    width: 100%;
    background-color: #e8e4df;
}

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

.service-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.service-price {
    font-size: 19px;
    font-weight: 600;
    color: #8b6f47;
    margin-top: 20px;
}

.service-cta-section {
    margin-top: 60px;
    padding: 40px 30px;
    background-color: #f7f5f2;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-cta-section p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #8b6f47;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.contact-info-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    order: 1;
}

.contact-image-block {
    order: 2;
    background-color: #e8e4df;
}

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

.info-detail {
    margin-bottom: 30px;
}

.info-detail h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 12px;
}

.info-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    color: #4a4a4a;
    font-weight: 500;
}

.email-note,
.hours-note {
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 8px;
}

.contact-text-section {
    margin-top: 50px;
}

.contact-text-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.preparation-list {
    margin: 25px 0 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.preparation-list li {
    margin-bottom: 10px;
}

.closing-contact-text {
    margin-top: 30px;
    font-size: 17px;
    font-weight: 500;
    color: #3a3a3a;
}

.closing-text {
    margin-top: 35px;
    font-size: 17px;
    font-weight: 500;
    color: #3a3a3a;
}

.thanks-page {
    min-height: 60vh;
}

.thanks-content {
    margin-top: 40px;
}

.thanks-message {
    padding: 40px 35px;
    background-color: #f7f5f2;
}

.thanks-message h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 35px;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.service-confirmation h2 {
    font-size: 18px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 0;
    margin-bottom: 10px;
}

.selected-service-name {
    font-size: 17px;
    font-weight: 600;
    color: #8b6f47;
}

.next-steps-list {
    margin: 20px 0 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.next-steps-list li {
    margin-bottom: 10px;
}

.return-navigation {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 800px;
}

.legal-date,
.legal-subtitle {
    font-size: 15px;
    color: #7a7a7a;
    margin-top: 10px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 20px 0 25px 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.legal-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

@media (min-width: 768px) {
    .service-detail-block {
        flex-direction: row;
        gap: 40px;
    }

    .service-detail-block.reverse {
        flex-direction: row-reverse;
    }

    .service-image-container {
        flex: 1;
        min-width: 300px;
    }

    .service-text {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

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

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

    .nav-links {
        gap: 20px;
    }

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

    .editorial-content {
        padding: 40px 20px 60px;
    }

    .hero-title {
        font-size: 30px;
    }

    .inline-image-block.left-aligned {
        margin-left: 0;
        max-width: 100%;
    }

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