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

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

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

.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

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

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

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

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

.story-flow {
    display: flex;
    flex-direction: column;
}

.hero-editorial {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 900px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
    font-style: italic;
}

.text-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

.text-column.centered {
    text-align: center;
}

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.text-column p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
}

.text-column h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.text-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #2c2c2c;
}

.text-column h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

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

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

.story-section.bg-light {
    background-color: #fafafa;
}

.story-section.bg-accent {
    background-color: #f5f1ed;
}

.inline-visual {
    margin: 50px auto;
    max-width: 800px;
    padding: 0 30px;
}

.content-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.img-caption {
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.quote-block {
    border-left: 4px solid #d4834f;
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    background-color: #f9f9f9;
    line-height: 1.7;
}

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

.cta-inline {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.cta-inline.centered {
    text-align: center;
}

.cta-card {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 60px;
    text-align: center;
    max-width: 600px;
    margin: 0 30px;
}

.cta-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-card p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    background-color: #d4834f;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #c17340;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.two-col-text {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.two-col-text > div {
    flex: 1;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 25px;
    background-color: #ffffff;
    border-left: 3px solid #d4834f;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    margin: 0;
}

.technique-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.technique-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-top: 2px solid #d4834f;
}

.technique-card h4 {
    margin-bottom: 12px;
    font-size: 22px;
}

.technique-card p {
    margin: 0;
    font-size: 17px;
}

.testimonial-section {
    background-color: #fafafa;
    padding: 80px 0;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.testimonial {
    padding: 35px 40px;
    background-color: #ffffff;
    border-left: 4px solid #d4834f;
    font-size: 18px;
    line-height: 1.7;
}

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

.services-inline {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.service-option {
    padding: 35px;
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-option.selected {
    border-color: #d4834f;
    box-shadow: 0 4px 12px rgba(212, 131, 79, 0.2);
}

.service-option h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d4834f;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
}

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

.form-wrapper {
    margin-top: 50px;
    padding: 40px;
    background-color: #ffffff;
    border: 2px solid #d4834f;
}

.form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    align-self: flex-start;
    margin-top: 10px;
}

.final-cta {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 38px;
    margin-bottom: 20px;
}

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

.disclaimer-section {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

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

.btn-sticky {
    display: inline-block;
    background-color: #d4834f;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-sticky:hover {
    background-color: #c17340;
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    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;
}

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

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    background-color: #d4834f;
    color: #ffffff;
}

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

.btn-cookie.btn-secondary {
    background-color: #555;
    color: #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background-color: #666;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #fafafa;
}

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

.services-page .service-detail {
    padding: 70px 0;
}

.service-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.service-info {
    flex: 1;
}

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

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #d4834f;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4834f;
    font-weight: 700;
}

.services-cta {
    padding: 80px 0;
    background-color: #f5f1ed;
}

.about-page .approach-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.approach-item {
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #d4834f;
}

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

.approach-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

.differentiation-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.diff-card {
    padding: 28px;
    background-color: #ffffff;
    border-top: 3px solid #d4834f;
}

.diff-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}

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

.contact-page .contact-grid {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

.contact-card {
    flex: 1;
    padding: 35px;
    background-color: #fafafa;
    border-top: 3px solid #d4834f;
}

.contact-card h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #444;
}

.contact-email {
    color: #333;
    font-weight: 600;
}

.email-note,
.hours-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

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

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

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 0;
}

.thanks-page .success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
}

.thanks-hero {
    padding: 80px 0;
    background-color: #fafafa;
}

.thanks-hero h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.confirmation-details {
    padding: 60px 0;
}

.confirmation-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
}

.confirmation-card h2 {
    font-size: 30px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #d4834f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

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

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

.service-confirmation-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.selected-service-display h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-name-display {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-info {
    padding: 60px 0;
}

.contact-options {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-option {
    flex: 1;
}

.contact-option h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-resources {
    padding: 60px 0;
    background-color: #fafafa;
}

.resource-links {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.resource-card {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-top: 3px solid #d4834f;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

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

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 15px;
    margin: 0;
    color: #666;
}

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

.thanks-final h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.legal-page .legal-date {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

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

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

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

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

.legal-list {
    margin-left: 25px;
    margin-bottom: 25px;
}

.legal-list li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

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

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

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

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .text-column {
        padding: 40px 20px;
    }

    .text-column h2 {
        font-size: 28px;
    }

    .two-col-text {
        flex-direction: column;
    }

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

    .service-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .service-content.reverse {
        flex-direction: column;
    }

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

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

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

    .contact-grid {
        flex-direction: column;
    }

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

    .resource-links {
        flex-direction: column;
    }
}