* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #e74c3c;
}

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

.hero-content-left {
    flex: 0 0 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #5a6c7d;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.hero-image-right {
    flex: 0 0 55%;
    margin-left: -80px;
    margin-top: -40px;
    background: #f8f9fa;
}

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

.intro-overlap {
    display: flex;
    padding: 120px 40px 80px;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
    margin-top: -120px;
    padding-top: 180px;
    position: relative;
}

.intro-block {
    flex: 0 0 50%;
    padding-left: 80px;
}

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

.intro-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.intro-visual {
    flex: 0 0 40%;
    margin-right: 40px;
    background: #e9ecef;
}

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

.services-asymmetric {
    padding: 100px 40px;
    background: #ffffff;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 60px;
    padding-left: 120px;
    color: #2c3e50;
    font-weight: 700;
}

.service-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e9ecef;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 25px 12px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 15px 25px;
}

.service-card button {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card button:hover {
    background: #1a252f;
}

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

.card-medium {
    flex: 0 0 calc(40% - 15px);
}

.card-small {
    flex: 0 0 calc(33.333% - 20px);
}

.form-section-offset {
    padding: 100px 40px 100px 180px;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    background: #ffffff;
    padding: 50px;
    border-left: 4px solid #e74c3c;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container p {
    margin-bottom: 35px;
    color: #5a6c7d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-overlap {
    padding: 80px 40px 100px 100px;
    background: #2c3e50;
    color: #ffffff;
    margin-top: -60px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-points {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 0 0 calc(33.333% - 34px);
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.trust-item p {
    color: #b8c5d4;
    line-height: 1.7;
}

footer {
    background: #1a252f;
    color: #b8c5d4;
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #b8c5d4;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-section p {
    line-height: 1.6;
}

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

.footer-bottom p {
    margin-bottom: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #2c3e50;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 100px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #e74c3c;
}

.contact-info h3 {
    margin-top: 0;
}

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

.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: #f8f9fa;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-container a {
    display: inline-block;
    padding: 14px 32px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: #c0392b;
}

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

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-right {
        flex: 1;
        margin-left: 0;
        margin-top: 0;
    }

    .intro-overlap {
        flex-direction: column;
        padding: 60px 20px;
    }

    .intro-block {
        padding-left: 0;
    }

    .service-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .trust-points {
        flex-direction: column;
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav-links {
        gap: 20px;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 2rem;
    }

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