* {
    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: #333;
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d7a3e;
    color: #fff;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3e;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.8rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 3px;
    margin-right: 1rem;
}

.header-right a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2d7a3e;
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    background-color: #fff;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d7a3e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem 4rem 3rem;
    background-color: #f9fafb;
}

.intro-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.intro-right {
    flex: 1;
    background-color: #d4e8d6;
    position: relative;
    overflow: hidden;
}

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

.services-section {
    padding: 5rem 3rem;
    background-color: #fff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.1rem;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 1.5rem 1rem;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d7a3e;
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #246832;
}

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

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
    background-color: #2d7a3e;
    color: #fff;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.25rem;
}

.form-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 5rem 4rem 3rem;
    background-color: #fff;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-split {
    display: flex;
    padding: 5rem 3rem;
    background-color: #fff;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.trust-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 150px;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    color: #2d7a3e;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #555;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 3rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-info strong {
    color: #1a1a1a;
}

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-page h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.about-page p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.services-page > p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin: 1.5rem 0 0.75rem;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #f9fafb;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d7a3e;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.thanks-content a {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: #2d7a3e;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #246832;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .form-left {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-right,
    .form-right {
        min-height: 400px;
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.25rem;
    }

    .header-split {
        padding: 1rem 1.5rem;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }
}