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

.ad-disclosure {
    background: #ffe5e5;
    color: #c7254e;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 1000;
    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;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: white;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-left {
    flex: 1;
    padding: 100px 40px 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 120px;
    width: 55%;
    transform: rotate(-3deg);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

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

.intro-card {
    flex: 1.2;
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 15px 15px 0 #e8f5e9;
    transform: translateY(-30px);
}

.intro-card h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.intro-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(30px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #e3f2fd;
}

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

.services-asymmetric {
    padding: 100px 60px;
    background: white;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 70px;
    padding-left: 120px;
    color: #1a1a1a;
}

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.large-card {
    flex: 1 1 calc(60% - 15px);
}

.medium-card {
    flex: 1 1 calc(50% - 15px);
}

.small-card {
    flex: 1 1 calc(40% - 15px);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.price-tag {
    margin: 20px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-select {
    margin: 0 25px 25px;
    padding: 14px;
    background: #34495e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #2c3e50;
}

.form-section-offset {
    padding: 120px 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    position: relative;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto 0 100px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 20px 20px 0 rgba(39, 174, 96, 0.1);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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;
}

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

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.benefits-overlap {
    padding: 100px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    position: relative;
}

.benefit-block {
    background: #f8faf9;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.benefit-block.left {
    flex: 1 1 45%;
    transform: translateX(50px);
}

.benefit-block.right {
    flex: 1 1 40%;
    transform: translateX(-30px) translateY(60px);
}

.benefit-block.center {
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #27ae60;
    color: white;
    transform: translateY(-40px);
}

.benefit-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2ecc71;
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #2ecc71;
}

.footer-block p {
    color: #bbb;
    line-height: 1.8;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

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

.page-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.page-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.page-container ul,
.page-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
    color: #555;
}

.page-container ul li,
.page-container ol li {
    margin-bottom: 10px;
}

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

.contact-info-block h3 {
    margin-top: 0;
    color: #27ae60;
}

.contact-info-block p {
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-container h1 {
    color: #27ae60;
    font-size: 42px;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.thanks-container a {
    display: inline-block;
    padding: 14px 35px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: #229954;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 0 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        transform: rotate(0);
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 50px;
    }

    .section-title-offset {
        padding-left: 0;
    }

    .service-grid-irregular .service-card {
        flex: 1 1 100%;
    }

    .form-wrapper {
        margin: 0 auto;
    }

    .benefit-block {
        flex: 1 1 100% !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .page-container {
        padding: 40px 30px;
    }

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