* {
    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(20, 30, 40, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid #3498db;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.header-asymmetric {
    position: relative;
    padding: 1.5rem 0;
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
}

.hero-offset {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 10%;
    width: 65%;
    height: 80%;
    background: #d5e8d4;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    margin-left: 8%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text-overlay p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-asymmetric {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 3rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.intro-right-card {
    width: 300px;
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.stat-block {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
}

.services-staggered {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 3rem;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #1a252f;
}

.service-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    background: white;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card.offset-1 {
    margin-left: 0;
}

.service-card.offset-2 {
    margin-left: 10%;
}

.service-card.offset-3 {
    margin-left: 5%;
}

.service-card.offset-4 {
    margin-left: 15%;
}

.service-card.offset-5 {
    margin-left: 8%;
}

.service-card.offset-6 {
    margin-left: 12%;
}

.service-image {
    width: 45%;
    min-height: 300px;
    background: #d5e8d4;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateX(5px);
}

.form-section-diagonal {
    background: #f8f9fa;
    padding: 8rem 3rem;
    margin: 10rem 0;
    transform: skewY(-2deg);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-container-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-container-offset > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-block {
    max-width: 900px;
    margin: 8rem auto;
    padding: 4rem;
    background: #1a252f;
    color: white;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.footer-asymmetric {
    background: #f8f9fa;
    padding: 5rem 3rem 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.footer-col p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #5a6c7d;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: white;
    border-left: 4px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.thanks-container {
    max-width: 800px;
    margin: 8rem auto;
    padding: 4rem 3rem;
    text-align: center;
    background: #f8f9fa;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.service-selected {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.service-selected strong {
    color: #1a252f;
    font-size: 1.2rem;
}

.legal-container {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-block {
    background: #f8f9fa;
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-info-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .hero-offset {
        height: auto;
        flex-direction: column;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-text-overlay {
        margin: -3rem 1.5rem 3rem;
        max-width: none;
    }

    .hero-text-overlay h1 {
        font-size: 2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        margin: 4rem auto;
        padding: 0 1.5rem;
    }

    .intro-right-card {
        width: 100%;
        margin-top: 2rem;
    }

    .services-staggered {
        margin: 5rem auto;
        padding: 0 1.5rem;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-image {
        width: 100%;
        min-height: 250px;
    }

    .form-section-diagonal {
        transform: none;
        padding: 4rem 1.5rem;
    }

    .form-container-offset {
        transform: none;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 2rem;
    }
}