* {
    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-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding-left: 60px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 35px;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 50%;
    max-width: 700px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44,62,80,0.2);
}

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,62,80,0.3);
}

.intro-offset {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 1;
    max-width: 520px;
    padding-left: 120px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a202c;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-image-float {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

.services-preview-asymmetric {
    background-color: #fafbfc;
    padding: 120px 40px;
    position: relative;
}

.section-header-offset {
    max-width: 600px;
    margin-left: 80px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-header-offset p {
    font-size: 19px;
    color: #6c757d;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: calc(33.333% - 27px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 12px;
    color: #1a202c;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.price-tag {
    background-color: #f8f9fa;
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    border-top: 2px solid #e9ecef;
}

.cta-inline-offset {
    text-align: center;
    margin-top: 60px;
    margin-left: -80px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 35px;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-diagonal {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 100px 40px;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 80px 0;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
}

.trust-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 22px;
}

.trust-stats-overlap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateX(30px);
}

.stat-box:nth-child(2) {
    transform: translateX(-20px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.process-staggered {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #1a202c;
}

.process-steps-irregular {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.process-step.step-left {
    margin-left: 0;
    margin-right: 120px;
}

.process-step.step-right {
    margin-left: 120px;
    margin-right: 0;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e9ecef;
    min-width: 80px;
}

.process-step h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a202c;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: #fafbfc;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 25%;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro p {
    font-size: 17px;
    color: #6c757d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    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: #3498db;
}

.btn-submit {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-block p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-block a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-block a:hover {
    opacity: 1;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
}

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

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

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1a252f;
}

.btn-reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

.btn-reject:hover {
    background-color: #dee2e6;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        padding-left: 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image-overlap {
        right: -50px;
        width: 45%;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

    .intro-narrow {
        padding-left: 0;
        max-width: 100%;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 50px;
    }

    .form-container-asymmetric {
        margin-left: auto;
        margin-right: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content-offset {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }

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

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

    .cta-inline-offset {
        margin-left: 0;
    }

    .process-step.step-left,
    .process-step.step-right {
        margin-left: 0;
        margin-right: 0;
    }

    .stat-box {
        transform: none !important;
    }

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

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

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

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

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

.thanks-container .cta-primary {
    margin-top: 30px;
}

.contact-info-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.about-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a202c;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
}

.services-detailed {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-detailed h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a202c;
    text-align: center;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 45%;
    height: 350px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .contact-info-section {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

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