* {
    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;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 20px 40px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.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: #2d6a4f;
}

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

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1b4332;
}

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

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

.cta-primary:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(45, 106, 79, 0.2);
}

.hero-image-right {
    flex: 1;
    position: relative;
    top: -30px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #d8f3dc;
}

.intro-block-offset {
    display: flex;
    padding: 120px 60px 100px 100px;
    gap: 80px;
    align-items: center;
    background: #ffffff;
}

.intro-text-narrow {
    flex: 1.2;
    max-width: 600px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1b4332;
    line-height: 1.3;
}

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

.intro-visual {
    flex: 0.8;
    position: relative;
    left: 40px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #b7e4c7;
}

.services-asymmetric {
    padding: 100px 40px 120px 40px;
    background: #f8faf9;
}

.services-header-diagonal {
    max-width: 700px;
    margin-bottom: 70px;
    padding-left: 80px;
}

.services-header-diagonal h2 {
    font-size: 46px;
    margin-bottom: 18px;
    color: #1b4332;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-offset-1 {
    width: 280px;
    margin-top: 0;
}

.card-offset-2 {
    width: 300px;
    margin-top: 50px;
}

.card-offset-3 {
    width: 290px;
    margin-top: 20px;
}

.card-offset-4 {
    width: 285px;
    margin-top: 70px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(45, 106, 79, 0.15);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    color: #1b4332;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    margin: 0 24px 16px 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #2d6a4f;
    margin: 0 24px 20px 24px;
}

.btn-select-service {
    background: #52b788;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.contact-form-diagonal {
    display: flex;
    padding: 100px 80px 100px 40px;
    gap: 70px;
    align-items: center;
    background: linear-gradient(to right, #ffffff 0%, #f0f9f4 100%);
}

.form-container-offset {
    flex: 1;
    max-width: 550px;
    padding-left: 60px;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1b4332;
}

.form-container-offset p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #d8f3dc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #52b788;
}

.btn-submit {
    padding: 16px 32px;
    background: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45, 106, 79, 0.25);
}

.form-visual-offset {
    flex: 0.8;
    position: relative;
    top: 50px;
}

.form-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #b7e4c7;
}

.disclaimer-section {
    padding: 60px 80px;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
}

.footer-irregular {
    background: #1b4332;
    color: #ffffff;
    padding: 80px 60px 40px 60px;
}

.footer-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

.footer-col-1 {
    flex: 1.5;
}

.footer-col-2,
.footer-col-3 {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d8f3dc;
}

.footer-column p {
    font-size: 15px;
    color: #95d5b2;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #b7e4c7;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d8f3dc;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2d6a4f;
}

.footer-bottom p {
    font-size: 14px;
    color: #95d5b2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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;
}

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

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

.btn-accept:hover {
    background: #1b4332;
}

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

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

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

.thanks-container h1 {
    font-size: 48px;
    color: #1b4332;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 19px;
    color: #6c757d;
    max-width: 600px;
    margin-bottom: 35px;
}

.thanks-container .cta-primary {
    margin-top: 20px;
}

.content-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 28px;
    color: #2d6a4f;
    margin-top: 40px;
    margin-bottom: 18px;
}

.content-section p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-info {
    background: #f8faf9;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    color: #1b4332;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 12px;
}

.contact-info .email-display {
    font-weight: 600;
    color: #2d6a4f;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-block-offset,
    .contact-form-diagonal {
        flex-direction: column;
    }

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

    .service-card {
        width: 100% !important;
        max-width: 400px;
        margin-top: 0 !important;
    }

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

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .services-header-diagonal {
        padding-left: 20px;
    }

    .services-header-diagonal h2 {
        font-size: 32px;
    }
}