* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2c5f2d;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f9f9f9;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px;
    margin-left: 8%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-30px);
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image-overlay {
    position: absolute;
    right: -100px;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #e8f5e9;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f2d;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44,95,45,0.3);
}

.cta-primary:hover {
    background: #1f4620;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,95,45,0.4);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-visual {
    flex: 1;
    background-color: #e8f5e9;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-cards {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.section-header-offset {
    max-width: 800px;
    margin-left: 12%;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 19px;
    color: #666;
}

.cards-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    width: 380px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-elevated {
    transform: translateY(-20px);
}

.card-offset-top {
    transform: translateY(20px);
}

.card-offset-bottom {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e8f5e9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
}

.price-tag {
    background: #2c5f2d;
    color: white;
    padding: 12px 20px;
    margin: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background: transparent;
    border: 2px solid #2c5f2d;
    color: #2c5f2d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.select-service:hover {
    background: #2c5f2d;
    color: white;
}

.select-service.selected {
    background: #2c5f2d;
    color: white;
}

.values-overlap {
    position: relative;
    min-height: 500px;
    margin: 80px 0;
    display: flex;
    align-items: center;
}

.values-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background-color: #e8f5e9;
}

.values-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.values-content-box {
    position: relative;
    z-index: 2;
    background: white;
    max-width: 600px;
    padding: 60px;
    margin-left: auto;
    margin-right: 10%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.values-content-box h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.value-item p {
    color: #666;
    font-size: 16px;
}

.form-section-diagonal {
    background: linear-gradient(165deg, #2c5f2d 0%, #1f4620 100%);
    padding: 100px 30px;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.98);
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
}

.form-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #856404;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px;
    background: #2c5f2d;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: #f9f9f9;
    border-left: 5px solid #2c5f2d;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

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

.footer-column p {
    color: #ccc;
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: #f9f9f9;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
}

.thanks-container .service-selected {
    background: #e8f5e9;
    padding: 20px;
    margin: 30px 0;
    border-left: 5px solid #2c5f2d;
}

.thanks-container .service-selected strong {
    color: #2c5f2d;
    font-size: 20px;
}

.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
}

.content-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.content-page h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #2c5f2d;
}

.content-page h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #333;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-page ul, .content-page ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info-box {
    background: #f9f9f9;
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid #2c5f2d;
}

.contact-info-box h3 {
    margin-top: 0;
}

.contact-info-box p {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        transform: none;
        width: 100%;
    }

    .hero-content-offset h1 {
        font-size: 32px;
    }

    .hero-image-overlay {
        position: relative;
        right: 0;
        width: 100%;
        height: 300px;
    }

    .intro-split {
        flex-direction: column;
        margin: 50px auto;
    }

    .values-overlap {
        flex-direction: column;
    }

    .values-background {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .values-content-box {
        margin: 0;
        width: 100%;
    }

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

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