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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

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

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

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

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

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

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

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    position: relative;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-floating {
    display: flex;
    gap: 32px;
    align-items: center;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: #ecf0f1;
    border-radius: 3px;
}

.nav-floating a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    min-height: 75vh;
    align-items: center;
    padding: 0 60px 0 0;
    position: relative;
}

.hero-text-block {
    flex: 0 0 45%;
    padding: 60px 0 60px 60px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtext {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.hero-image-diagonal {
    flex: 1;
    position: relative;
    margin-left: -80px;
    background: #e8f5e9;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
}

.intro-narrow {
    flex: 0 0 35%;
}

.intro-lead {
    font-size: 26px;
    line-height: 1.5;
    color: #34495e;
    font-weight: 500;
}

.intro-wide {
    flex: 1;
    font-size: 18px;
    color: #5a6c7d;
    padding-top: 40px;
}

.services-cards-offset {
    padding: 80px 60px 120px;
    background: #f8f9fa;
}

.section-header-left {
    margin-bottom: 60px;
    padding-left: 20px;
}

.section-header-left h2 {
    font-size: 42px;
    color: #2c3e50;
}

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card-elevated {
    margin-top: 40px;
}

.service-card-wide {
    flex: 0 0 calc(50% - 15px);
}

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

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-content p {
    color: #5a6c7d;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
}

.why-us-split {
    display: flex;
    min-height: 600px;
}

.why-image {
    flex: 0 0 40%;
    background: #d5e8d4;
}

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

.why-content {
    flex: 1;
    padding: 80px 100px 80px 80px;
    background: white;
}

.why-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.why-list {
    list-style: none;
    margin-bottom: 40px;
}

.why-list li {
    padding: 16px 0;
    font-size: 18px;
    color: #5a6c7d;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 32px;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 22px;
    font-weight: 700;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #c0392b;
}

.testimonials-offset {
    padding: 100px 60px 100px 140px;
    background: #34495e;
}

.section-title-right {
    font-size: 42px;
    color: white;
    margin-bottom: 60px;
    text-align: right;
    padding-right: 80px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.testimonial-elevated {
    margin-top: -40px;
}

.testimonial p {
    color: #ecf0f1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial cite {
    color: #bdc3c7;
    font-style: normal;
    font-size: 15px;
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, #27ae60 0%, #16a085 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto 0 80px;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-intro {
    color: #5a6c7d;
    margin-bottom: 32px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 2;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.disclaimer-text {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #7f8c8d;
}

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

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

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

.thanks-service {
    font-weight: 600;
    color: #2c3e50;
}

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

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

    .nav-floating {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-offset {
        flex-direction: column;
        padding: 0;
    }

    .hero-text-block {
        flex: 1;
        padding: 40px 20px;
    }

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

    .hero-image-diagonal {
        margin-left: 0;
        height: 300px;
    }

    .hero-image-diagonal img {
        clip-path: none;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .intro-lead {
        font-size: 20px;
    }

    .services-cards-offset {
        padding: 60px 20px;
    }

    .cards-grid-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .service-card-wide {
        flex: 1 1 100%;
    }

    .why-us-split {
        flex-direction: column;
    }

    .why-content {
        padding: 40px 20px;
    }

    .testimonials-offset {
        padding: 60px 20px;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .form-section-diagonal {
        padding: 60px 20px;
    }

    .form-container {
        margin: 0;
        padding: 30px 20px;
    }

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