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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fafaf8;
    border-bottom: 1px solid #e8e8e6;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.ad-disclosure {
    font-size: 11px;
    color: #888;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8b7355;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f9f7f4;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c2c2c;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-split {
    display: flex;
    min-height: 550px;
}

.insight-left,
.insight-right {
    flex: 1;
}

.insight-left {
    overflow: hidden;
}

.insight-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-right {
    display: flex;
    align-items: center;
    background-color: #fafaf8;
    padding: 80px 60px;
}

.insight-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.cta-inline {
    margin-top: 35px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #8b7355;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6f5a44;
}

.testimonials-section {
    padding: 100px 60px;
    background-color: #f4f1ed;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 600;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.services-reveal {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.services-split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafaf8;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.service-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.benefit-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e8dfd5;
    color: #6f5a44;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 25px;
}

.btn-select {
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #1a1a1a;
}

.order-section {
    padding: 100px 60px;
    background-color: #f9f7f4;
}

.order-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.order-left,
.order-right {
    flex: 1;
}

.order-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 600;
}

.selected-service-display p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.selected-service-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.selected-service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.selected-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 100px 60px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 600;
}

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

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

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #242424;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaaaaa;
}

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

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

.page-header {
    padding: 80px 60px 60px;
    background-color: #f9f7f4;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

.page-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #2c2c2c;
    font-weight: 600;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #2c2c2c;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    gap: 80px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b7355;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.thanks-service-box {
    background-color: #f9f7f4;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-service-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

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

    .header-right {
        align-items: center;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-split,
    .insight-split {
        flex-direction: column;
    }

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

    .story-container,
    .order-container,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex-direction: column !important;
    }

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

    .testimonials-grid,
    .trust-grid {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}
