* {
    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: #fafbfc;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5f3f;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a5f3f;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 12px;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
    align-items: center;
}

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

.hero-content-left h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #1a5f3f;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.25rem;
    color: #546e7a;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: #1a5f3f;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.3);
}

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

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

.intro-asymmetric {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    background: white;
}

.intro-block-small {
    flex: 0.4;
}

.intro-block-small h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a5f3f;
    font-weight: 700;
}

.intro-block-large {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-block-large p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

.services-section {
    padding: 100px 80px;
    background: #f5f7f9;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: #1a5f3f;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #546e7a;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-large {
    flex: 1 1 calc(60% - 15px);
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #e8f5e9;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    color: #546e7a;
    line-height: 1.7;
}

.service-price {
    font-size: 1.4rem;
    color: #1a5f3f;
    font-weight: 700;
    margin-top: 10px;
}

.service-select {
    background: #1a5f3f;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.service-select:hover {
    background: #145038;
    transform: scale(1.02);
}

.form-section-offset {
    display: flex;
    min-height: 700px;
}

.form-container {
    flex: 1.2;
    padding: 80px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a5f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #546e7a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #1a5f3f;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #145038;
    transform: translateY(-2px);
}

.form-image {
    flex: 0.8;
    overflow: hidden;
    background: #e8f5e9;
}

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

.trust-section {
    padding: 100px 80px;
    background: #1a5f3f;
    color: white;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    max-width: 700px;
}

.trust-content > p {
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    opacity: 0.95;
}

.trust-points {
    display: flex;
    gap: 50px;
}

.trust-point {
    flex: 1;
}

.trust-point h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.trust-point p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    opacity: 0.85;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-accept {
    background: #1a5f3f;
    color: white;
}

.cookie-accept:hover {
    background: #145038;
    transform: scale(1.05);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-content .service-selected {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-content .service-selected strong {
    color: #1a5f3f;
    font-size: 1.1rem;
}

.contact-page {
    padding: 120px 80px 80px;
    min-height: 100vh;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3.5rem;
    color: #1a5f3f;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    max-width: 1000px;
}

.contact-info-item {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-info-item h3 {
    font-size: 1.5rem;
    color: #1a5f3f;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-item p {
    color: #546e7a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-page {
    padding: 120px 80px 80px;
}

.about-hero {
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #1a5f3f;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.3rem;
    color: #546e7a;
    max-width: 800px;
    line-height: 1.8;
}

.about-content {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 0.8;
    background: #e8f5e9;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.legal-page h1 {
    font-size: 3rem;
    color: #1a5f3f;
    margin-bottom: 30px;
    font-weight: 800;
}

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

.legal-page p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-page li {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding: 40px;
    }

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

    .hero-image-right {
        min-height: 400px;
    }

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

    .services-section {
        padding: 60px 40px;
    }

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

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-container {
        padding: 40px;
    }

    .form-image {
        min-height: 300px;
    }

    .trust-points {
        flex-direction: column;
        gap: 30px;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

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