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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

.btn-reject {
    background-color: #666;
    color: white;
}

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

.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B7355;
}

.hero-full {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.problem-reveal {
    padding: 100px 0;
}

.problem-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.problem-item {
    flex: 1;
    min-width: 300px;
}

.problem-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.problem-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
    line-height: 1.3;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.visual-proof {
    padding: 100px 0;
}

.proof-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

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

.proof-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.proof-text {
    flex: 1;
    min-width: 300px;
}

.proof-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.proof-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.trust-elements {
    padding: 100px 0;
}

.trust-elements h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #F9F8F5;
    border-radius: 6px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 0;
    background-color: #fff;
}

.testimonial-item {
    margin-bottom: 50px;
    padding: 30px;
    border-left: 4px solid #8B7355;
    background-color: #fafafa;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.services-reveal {
    padding: 100px 0;
}

.services-reveal h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.services-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #555;
}

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

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 300px;
}

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

.service-card h3 {
    font-size: 26px;
    margin: 30px 30px 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    margin: 0 30px 20px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #8B7355;
    margin: 20px 30px;
}

.btn-service {
    margin: 0 30px 30px;
    padding: 14px 28px;
    background-color: #8B7355;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #7A6247;
}

.form-section {
    padding: 100px 0;
    background-color: #F5F3EF;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8B7355;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-reassurance {
    padding: 100px 0;
}

.final-reassurance h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
    text-align: center;
}

.final-reassurance p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 40px 20px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #3a3a3a;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

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

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

.page-header h1 {
    font-size: 48px;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #555;
}

.about-story {
    padding: 100px 0;
}

.about-story h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.about-story p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-visual {
    padding: 100px 0;
}

.about-image-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.about-image-item {
    flex: 1;
    min-width: 300px;
}

.about-image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.about-text-item {
    flex: 1;
    min-width: 300px;
}

.about-text-item h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-text-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.about-values {
    padding: 100px 0;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-approach {
    padding: 100px 0;
}

.about-approach h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.about-approach p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-difference {
    padding: 100px 0;
}

.about-difference h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c2c2c;
}

.about-difference p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

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

.services-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 600;
    color: #8B7355;
    margin: 30px 0;
}

.services-cta {
    padding: 100px 0;
    background-color: #F5F3EF;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8B7355;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
}

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

.services-cta .btn-primary {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

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

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #F9F8F5;
    border-radius: 6px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.contact-card .note {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-top: 15px;
}

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

.contact-directions h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.contact-directions h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-directions p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-hours-detail {
    padding: 80px 0;
}

.contact-hours-detail h2 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

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

.contact-alternative h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.contact-alternative p {
    font-size: 17px;
    margin-bottom: 30px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.contact-alternative .btn-primary {
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

.thanks-hero {
    padding: 100px 0;
    background-color: #F5F3EF;
}

.thanks-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 20px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

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

.thanks-info h3 {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-service-reference {
    padding: 60px 0;
}

.thanks-service-reference h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c2c2c;
}

.service-reference {
    font-size: 20px;
    font-weight: 600;
    color: #8B7355;
    text-align: center;
    margin-bottom: 20px;
}

.thanks-service-reference p {
    font-size: 16px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

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

.thanks-timeline h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c2c2c;
}

.thanks-timeline p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #666;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

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

.thanks-reassurance h3 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
    color: #2c2c2c;
}

.thanks-reassurance p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .content-wrapper,
    .content-wide,
    .content-narrow {
        padding: 60px 20px;
    }

    .problem-grid,
    .trust-grid,
    .values-grid,
    .contact-grid,
    .info-grid,
    .steps-grid {
        flex-direction: column;
    }

    .proof-container,
    .about-image-grid,
    .service-detail-card {
        flex-direction: column;
    }

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