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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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: 250px;
}

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

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

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

.btn-accept:hover {
    background: #3d6849;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.nav-links a:hover {
    color: #4a7c59;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left {
    flex: 1;
    background: #f8f7f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-text {
    max-width: 540px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.cta-primary {
    background: #4a7c59;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #3d6849;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    overflow: hidden;
    background: #e8e6e1;
}

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

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.intro-image {
    flex: 0 0 400px;
    background: #e8e6e1;
}

.intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 22px;
}

.insight-split {
    display: flex;
    background: #2c3e35;
    color: #ffffff;
}

.insight-left {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-left h2 {
    font-size: 42px;
    margin-bottom: 35px;
    line-height: 1.25;
    font-weight: 600;
}

.insight-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e5e5e5;
}

.insight-right {
    flex: 1;
    background: #d4d2cc;
}

.insight-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 110px 40px;
    background: #f8f7f4;
}

.trust-container {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 44px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

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

.process-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 45px;
    min-width: 280px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.process-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.testimonial-section {
    padding: 90px 40px;
    background: #ffffff;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #f8f7f4;
    border-left: 4px solid #4a7c59;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-split {
    display: flex;
    min-height: 700px;
}

.benefits-left {
    flex: 1;
    background: #e8e6e1;
}

.benefits-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-right {
    flex: 1;
    padding: 80px 70px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-right h2 {
    font-size: 40px;
    margin-bottom: 45px;
    color: #1a1a1a;
    font-weight: 600;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-reveal {
    padding: 100px 40px;
    background: #f8f7f4;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 46px;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 20px;
}

.select-btn {
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form {
    background: #f8f7f4;
    padding: 50px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid #d4d4d4;
    background: #ffffff;
    color: #2c2c2c;
    font-family: inherit;
}

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

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

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

.final-cta {
    padding: 100px 40px;
    background: #2c3e35;
    color: #ffffff;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.final-cta-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e5e5e5;
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-section ul li a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #4a7c59;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .hero-split,
    .insight-split,
    .benefits-split {
        flex-direction: column;
    }

    .hero-left,
    .insight-left,
    .benefits-right {
        padding: 50px 30px;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 13px;
    }

    .intro-container,
    .testimonial-container {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image {
        flex: 0 0 auto;
    }

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

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

    .contact-form {
        padding: 30px 20px;
    }
}