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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.96);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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;
    min-width: 280px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-header {
    background: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: 60px 40px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 80px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 174, 96, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    height: 85%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.12);
}

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

.intro-diagonal {
    padding: 100px 40px;
    background: #ffffff;
}

.container-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-block {
    flex: 1.2;
    padding-right: 40px;
}

.intro-block h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.intro-image-side {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.intro-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 12px 12px 32px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-section {
    padding: 120px 40px 100px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.services-header-irregular {
    max-width: 720px;
    margin: 0 0 80px 120px;
}

.services-header-irregular h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-irregular p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
}

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

.service-card {
    width: calc(33.333% - 28px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.service-card.offset-top {
    margin-top: -30px;
}

.service-card.offset-bottom {
    margin-top: 30px;
}

.service-card.offset-left {
    margin-left: -20px;
}

.service-card.offset-right {
    margin-right: -20px;
}

.service-card.offset-center {
    margin-top: 15px;
}

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

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 600;
}

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

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-overlap {
    padding: 80px 40px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    position: relative;
}

.form-container-irregular {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-left: 15%;
}

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

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.selected-service-display {
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 15px;
}

.contact-form-asymmetric .form-row {
    margin-bottom: 24px;
}

.contact-form-asymmetric label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 15px;
}

.contact-form-asymmetric input,
.contact-form-asymmetric textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form-asymmetric textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.trust-section {
    padding: 100px 40px;
    background: #ffffff;
}

.trust-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.link-subtle {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.link-subtle:hover {
    color: #229954;
    transform: translateX(4px);
}

.trust-visual {
    flex: 1;
    margin-left: -60px;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -12px 12px 32px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #27ae60;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

@media (max-width: 1024px) {
    .hero-text-block {
        margin-left: 20px;
    }

    .hero-image-overlap {
        width: 50%;
        height: 80%;
    }

    .container-offset,
    .trust-content-split {
        flex-direction: column;
    }

    .intro-image-side,
    .trust-visual {
        margin: 0;
    }

    .services-header-irregular {
        margin-left: 20px;
    }

    .form-container-irregular {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric {
        min-height: 500px;
    }

    .hero-text-block h1 {
        font-size: 34px;
    }

    .hero-image-overlap {
        display: none;
    }

    .service-card {
        width: 100%;
        margin: 0 !important;
    }

    .form-container-irregular {
        padding: 40px 24px;
    }

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