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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #4a7c4e;
    color: #fff;
}

.btn-accept:hover {
    background: #3a6c3e;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
}

.nav-items {
    display: flex;
    gap: 2rem;
}

.nav-items a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #4a7c4e;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 8rem 4rem 4rem;
    gap: 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 500px;
    padding-left: 2rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #4a7c4e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #3a6c3e;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -4rem;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
}

.intro-asymmetric {
    display: flex;
    gap: 6rem;
    padding: 8rem 4rem;
    align-items: flex-start;
    background: #fafafa;
}

.intro-left {
    flex: 1.2;
    padding-top: 3rem;
}

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

.intro-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.intro-right {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -6rem;
}

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

.services-stagger {
    padding: 6rem 4rem;
}

.services-title-offset {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    margin-left: 8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-radius: 16px;
    align-items: center;
}

.service-left {
    margin-left: 0;
    margin-right: 8rem;
}

.service-right {
    margin-left: 8rem;
    margin-right: 0;
}

.service-image {
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #4a7c4e;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 2rem;
    background: #2a2a2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #4a7c4e;
    transform: translateY(-2px);
}

.trust-block-diagonal {
    background: linear-gradient(135deg, #4a7c4e 0%, #3a6c3e 100%);
    padding: 6rem 4rem;
    margin: 4rem 0 4rem 6rem;
    border-radius: 0 20px 20px 0;
    color: #fff;
}

.trust-content {
    max-width: 700px;
    margin-left: 4rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-content p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.form-section-offset {
    padding: 6rem 4rem 6rem 12rem;
    background: #fafafa;
}

.form-container {
    max-width: 600px;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-container > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

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

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 4rem 2rem;
}

.footer-main {
    display: flex;
    gap: 6rem;
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 0.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4a7c4e;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.service-selected-notice {
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #4a7c4e;
}

.service-selected-notice p {
    color: #2a2a2a;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 6rem 2rem 4rem;
    }

    .hero-text-block {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-image-offset {
        width: 100%;
        margin-top: 2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .intro-right {
        margin-top: 0;
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-left,
    .service-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-image {
        width: 100%;
    }

    .services-title-offset {
        margin-left: 0;
        font-size: 2.2rem;
    }

    .trust-block-diagonal {
        margin-left: 0;
        border-radius: 20px;
    }

    .trust-content {
        margin-left: 0;
    }

    .form-section-offset {
        padding: 4rem 2rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 3rem;
        padding-left: 0;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        top: 1rem;
    }

    .nav-items {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}