* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #1e3a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8faf9;
}

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

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3a6d4e;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4e8df;
}

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

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #e8f0ed;
}

.intro-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a2e;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-highlight {
    background-color: #f4f7f6;
    padding: 90px 40px;
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1e3a2e;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #d4e8df;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1e3a2e;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3f;
    margin: 0 24px 20px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: #2d5a3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3a6d4e;
}

.values-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.values-content {
    flex: 1.2;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1e3a2e;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5a3f;
}

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

.values-image {
    flex: 1;
    background-color: #e8f0ed;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    background-color: #1e3a2e;
    padding: 80px 40px;
    text-align: center;
}

.form-section h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #ffffff;
}

.form-section > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #c8d6d1;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #3a6d4e;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4d8c63;
}

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

.submit-btn:hover {
    background-color: #5fa177;
}

.disclaimer-section {
    background-color: #fef9f5;
    padding: 40px;
    margin: 0 auto;
    max-width: 1000px;
    margin-top: 60px;
    margin-bottom: 60px;
    border-left: 4px solid #e8b563;
}

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

.main-footer {
    background-color: #1a2e24;
    color: #c8d6d1;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #c8d6d1;
}

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

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

.footer-col ul li a {
    color: #c8d6d1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a2e;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #4d8c63;
    color: #ffffff;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3f 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #c8d6d1;
}

.about-story {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 40px;
    gap: 70px;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1e3a2e;
}

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

.story-image {
    flex: 1;
    background-color: #e8f0ed;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-approach {
    background-color: #f8faf9;
    padding: 80px 40px;
}

.team-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1e3a2e;
}

.approach-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.approach-item {
    flex: 1;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5a3f;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.expertise-section {
    display: flex;
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.expertise-left {
    flex: 1.2;
}

.expertise-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1e3a2e;
}

.expertise-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.expertise-right {
    flex: 1;
    background-color: #e8f0ed;
}

.expertise-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-section {
    background: linear-gradient(135deg, #2d5a3f 0%, #1e3a2e 100%);
    padding: 90px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    margin-bottom: 36px;
    color: #c8d6d1;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4d8c63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #5fa177;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a2e;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a5568;
}

.service-price {
    margin: 32px 0;
    padding: 20px;
    background-color: #f8faf9;
    border-left: 4px solid #2d5a3f;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    display: block;
    margin-bottom: 6px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3f;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #2d5a3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f0ed;
}

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

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

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5a3f;
}

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

.email-display {
    color: #4a5568;
    cursor: text;
}

.thanks-section {
    max-width: 800px;
    margin: 120px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8faf9;
    border-radius: 12px;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #2d5a3f;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.back-home {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #2d5a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home:hover {
    background-color: #3a6d4e;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1e3a2e;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5a3f;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #3a6d4e;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 30px;
}

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

.legal-page a {
    color: #2d5a3f;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #3a6d4e;
}

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

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

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

    .service-card {
        width: 100%;
    }

    .approach-grid {
        flex-direction: column;
        gap: 30px;
    }

    .form-row {
        flex-direction: column;
    }

    .nav-menu {
        gap: 20px;
    }

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

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

@media (max-width: 640px) {
    .hero-content {
        padding: 50px 30px;
    }

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

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

    .services-highlight h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}