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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 0 0 48%;
    padding-right: 80px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a472a;
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #229954;
}

.hero-image-right {
    flex: 0 0 52%;
    position: relative;
    margin-left: -40px;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-asymmetric {
    display: flex;
    padding: 120px 60px 80px;
    gap: 90px;
    align-items: flex-start;
}

.intro-block-narrow {
    flex: 0 0 42%;
    padding-top: 40px;
}

.intro-block-narrow h2 {
    font-size: 38px;
    color: #1a472a;
    margin-bottom: 22px;
    font-weight: 700;
}

.intro-block-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

.intro-visual-aside {
    flex: 0 0 50%;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
}

.intro-visual-aside img {
    width: 100%;
    height: 420px;
    border-radius: 4px;
}

.services-overlap {
    padding: 80px 60px 100px;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 120px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #1a472a;
    margin-bottom: 18px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-left: 0;
}

.service-card:nth-child(2) {
    margin-left: 80px;
}

.service-card:nth-child(3) {
    margin-left: 160px;
}

.service-card:nth-child(4) {
    margin-left: 40px;
}

.service-card:nth-child(5) {
    margin-left: 200px;
}

.service-visual {
    flex: 0 0 45%;
    background: #e9ecef;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.service-details {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 24px;
    color: #1a472a;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: auto;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0 18px;
}

.btn-select-service {
    padding: 13px 28px;
    background: #1a472a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #27ae60;
}

.trust-block-inline {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 0 0 48%;
}

.trust-content h2 {
    font-size: 40px;
    color: #1a472a;
    margin-bottom: 32px;
    font-weight: 700;
}

.benefits-raw {
    list-style: none;
    margin-bottom: 35px;
}

.benefits-raw li {
    padding: 14px 0;
    font-size: 17px;
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
}

.benefits-raw li:before {
    content: "✓";
    color: #27ae60;
    font-weight: 700;
    margin-right: 12px;
    font-size: 20px;
}

.cta-inline-trust {
    display: inline-block;
    padding: 15px 36px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-inline-trust:hover {
    background: #229954;
}

.trust-visual-offset {
    flex: 0 0 45%;
    margin-top: -60px;
}

.trust-visual-offset img {
    width: 100%;
    height: 500px;
    border-radius: 6px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.form-section-asymmetric {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
}

.form-container {
    max-width: 600px;
    margin-left: 180px;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 35px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
}

.footer-split {
    background: #212529;
    color: #adb5bd;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #495057;
    padding-top: 30px;
    margin-top: 30px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 1000;
    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;
    font-size: 15px;
    color: #495057;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background: #229954;
}

.cookie-btn-reject {
    background: #e9ecef;
    color: #495057;
}

.cookie-btn-reject:hover {
    background: #dee2e6;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .trust-block-inline,
    .service-card {
        flex-direction: column;
    }

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

    .hero-content-left,
    .intro-block-narrow,
    .trust-content {
        padding-right: 0;
    }

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

    .services-header-offset,
    .form-container {
        margin-left: 0;
    }

    .service-card {
        margin-left: 0 !important;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}