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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
}

.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.nav-logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a472a;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover {
    color: #2d5a3d;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.hero-visual {
    flex: 1;
    background-color: #f4f6f5;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5a3d;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2d5a3d;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    align-items: flex-start;
}

.intro-text {
    flex: 0 0 55%;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.25;
}

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

.intro-stats {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background-color: #f8faf9;
    padding: 35px 30px;
    border-left: 4px solid #2d5a3d;
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 16px;
    color: #666666;
}

.process-visual {
    position: relative;
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.process-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f0f0f0;
}

.process-overlay {
    position: absolute;
    bottom: -50px;
    right: 60px;
    background-color: #ffffff;
    padding: 40px 45px;
    max-width: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-overlay h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.process-overlay p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.services-select {
    background-color: #fafafa;
    padding: 90px 40px;
    margin-top: 120px;
}

.services-select h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #666666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background-color: #ffffff;
    flex: 0 1 calc(33.333% - 24px);
    min-width: 320px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.14);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 25px 20px 25px;
    display: block;
}

.select-service {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #234a31;
}

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-split {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.form-info {
    flex: 0 0 40%;
}

.form-info h2 {
    font-size: 42px;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: #f0f7f3;
    padding: 20px;
    border-left: 3px solid #2d5a3d;
    margin-top: 25px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display strong {
    font-size: 16px;
    color: #2d5a3d;
}

.contact-form {
    flex: 1;
    background-color: #fafafa;
    padding: 45px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d1d1;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a31;
}

.trust-inline {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.trust-inline img {
    flex: 1;
    max-width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 50px 40px;
    margin-top: 100px;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 40px 30px 40px;
    margin-top: 80px;
}

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

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

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

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

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.2);
}

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

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

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

.cookie-content a {
    color: #7fc99c;
}

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

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

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a31;
}

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

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

.about-hero {
    text-align: center;
    padding: 90px 40px 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    color: #555555;
    line-height: 1.6;
}

.about-split {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-split img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

.values-section {
    background-color: #fafafa;
    padding: 90px 40px;
    margin: 100px 0;
}

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

.values-cards {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #2d5a3d;
}

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

.team-visual {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-intro {
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    max-width: 800px;
}

.team-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

.services-hero {
    text-align: center;
    padding: 90px 40px 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    color: #555555;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 90px auto;
    padding: 0 40px;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: #1a1a1a;
}

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

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
    display: block;
    margin: 30px 0 25px 0;
}

.service-detail-split img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

.additional-services {
    background-color: #fafafa;
    padding: 90px 40px;
    margin: 100px 0;
}

.additional-services h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.additional-grid {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.additional-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.additional-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #2d5a3d;
}

.process-timeline {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.process-timeline h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5a3d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-hero {
    text-align: center;
    padding: 90px 40px 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #555555;
}

.contact-split {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

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

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

.thanks-section {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    min-height: 60vh;
}

.thanks-content {
    flex: 1;
}

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

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

.thanks-info {
    background-color: #f0f7f3;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #2d5a3d;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 12px;
}

.thanks-visual {
    flex: 0 0 45%;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #efefef;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
}

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

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

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .service-detail-split,
    .form-split,
    .trust-inline,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-visual,
    .service-detail-split img,
    .about-split img,
    .trust-inline img,
    .contact-visual,
    .thanks-visual {
        max-width: 100%;
        width: 100%;
    }

    .values-cards,
    .additional-grid,
    .footer-columns {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-text,
    .intro-stats {
        flex: 1;
    }

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

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

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

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

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

    .services-grid {
        gap: 25px;
    }
}