* {
    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.7;
    color: #2c3e2a;
    background-color: #fdfcfa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

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

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #4a6741;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #8b8781;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid #d4d2cd;
    border-radius: 3px;
}

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

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: #4a6741;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #4a6741;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 1;
}

.intro-section {
    padding: 100px 0;
    background-color: #f7f5f1;
}

.intro-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e2a;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5548;
}

.services-preview-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: stretch;
}

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

.service-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e2a;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a6741;
}

.approach-section {
    padding: 100px 0;
    background-color: #e8e5df;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #2c3e2a;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.additional-services-section {
    padding: 110px 0;
    background-color: #ffffff;
}

.additional-services-section h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e2a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-item-image {
    flex: 0 0 380px;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e2a;
}

.service-item-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6658;
    margin-bottom: 18px;
}

.testimonials-section {
    padding: 90px 0;
    background-color: #f4f2ed;
}

.testimonials-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e2a;
}

.testimonial {
    margin-bottom: 40px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #4a6741;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a4638;
    font-style: italic;
    margin-bottom: 14px;
}

.testimonial-author {
    font-size: 15px;
    color: #7a8678;
    font-weight: 600;
}

.cta-section {
    padding: 100px 0;
    background-color: #4a6741;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e8e5df;
    margin-bottom: 36px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #4a6741;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 80px auto;
    padding: 45px;
    border-radius: 8px;
    max-width: 540px;
    position: relative;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #8b8781;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #2c3e2a;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e2a;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #d4d2cd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a6741;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #4a6741;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #3a5231;
}

.main-footer {
    padding: 70px 0 40px;
    background-color: #2c3e2a;
    color: #c8c5bf;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    font-size: 14px;
    color: #c8c5bf;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid #4a5548;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #9a9790;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e2a;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1500;
}

.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.6;
    margin: 0;
}

.cookie-content a {
    color: #a8d5a8;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4a6741;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

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

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

.page-header p {
    font-size: 19px;
    color: #5a6658;
}

.services-detailed-section {
    padding: 80px 0;
}

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e2a;
}

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

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

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6658;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a6741;
    font-weight: 700;
    font-size: 20px;
}

.pricing-detail {
    padding-top: 20px;
    border-top: 2px solid #e5e3df;
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: #4a6741;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #7a8678;
}

.about-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e2a;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.philosophy-section {
    padding: 90px 0;
    background-color: #f7f5f1;
}

.philosophy-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 26px;
    color: #2c3e2a;
}

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5548;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e2a;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #f7f5f1;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c3e2a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6658;
}

.team-section {
    padding: 90px 0;
    background-color: #e8e5df;
}

.team-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e2a;
}

.team-section > p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5548;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-image-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-image {
    flex: 1;
    min-width: 300px;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.approach-detail-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.approach-detail-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e2a;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    padding: 30px;
    background-color: #f7f5f1;
    border-radius: 6px;
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #4a6741;
}

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

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e2a;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a6741;
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-cta-section {
    padding: 80px 0;
    background-color: #f7f5f1;
}

.contact-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
    color: #2c3e2a;
}

.contact-cta-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5548;
    text-align: center;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f7f5f1;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.selected-service {
    padding: 20px;
    background-color: #e8e5df;
    border-radius: 6px;
    margin-bottom: 24px;
}

.selected-service p {
    margin: 0;
    font-size: 16px;
    color: #2c3e2a;
}

.thanks-note {
    font-size: 16px;
    color: #7a8678;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4a6741;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #3a5231;
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4a6741;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #4a6741;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
    background-color: #4a6741;
    color: #ffffff;
    opacity: 1;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e2a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e2a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #4a6741;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4a6741;
}

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

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

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

.legal-page a {
    color: #4a6741;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .service-card,
    .service-card:nth-child(even),
    .service-item,
    .service-item:nth-child(even),
    .approach-content,
    .about-content,
    .contact-layout,
    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-item-image {
        flex: 0 0 250px;
    }

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

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