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

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

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

.main-nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
}

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

.nav-links a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FAF9F7;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4A4A4A;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background-color: #8B7355;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6F5A42;
}

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-left {
    flex: 1;
    padding-right: 30px;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.intro-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.intro-right {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.services-highlight {
    background-color: #FAFAFA;
    padding: 80px 40px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 25px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #1A1A1A;
}

.contact-form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.form-intro p {
    font-size: 17px;
    color: #4A4A4A;
}

.contact-form {
    background-color: #FAF9F7;
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #D0D0D0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: #FFFFFF;
}

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

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

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

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.trust-content p {
    font-size: 17px;
    color: #4A4A4A;
}

.trust-image {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: #F5F5F5;
    border-left: 4px solid #8B7355;
}

.disclaimer-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.main-footer {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

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

.footer-column a {
    display: block;
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #FFFFFF;
    font-size: 15px;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

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

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

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

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

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.header-content p {
    font-size: 20px;
    color: #4A4A4A;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 60px;
    background-color: #FAF9F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

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

.team-approach {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.approach-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.approach-image {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
}

.service-detail {
    display: flex;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FAF9F7;
}

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #4A4A4A;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 25px;
    color: #4A4A4A;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.service-pricing .price {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
}

.service-pricing .service-select {
    padding: 14px 28px;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-pricing .service-select:hover {
    background-color: #1A1A1A;
}

.service-cta {
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 80px 40px;
    text-align: center;
}

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

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

.contact-info-section {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1A1A1A;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8B7355;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    color: #4A4A4A;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-notes {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-notes h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.contact-notes p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4A4A4A;
    line-height: 1.7;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #FAF9F7;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4A4A4A;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #E8E5E0;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.service-confirmation p {
    font-size: 17px;
    color: #2C2C2C;
    margin: 0;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1A1A1A;
}

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

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

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4A4A4A;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-section,
    .trust-section,
    .about-split,
    .team-approach,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-left,
    .trust-content,
    .about-content,
    .approach-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-image,
    .intro-right,
    .trust-image,
    .about-image,
    .approach-image,
    .service-detail-image {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
}