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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

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

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

.header-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 15px 40px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    border-left: 2px solid #ecf0f1;
    padding-left: 20px;
    font-style: italic;
}

.hero-asymmetric {
    margin-top: 120px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    margin-left: 8%;
    background: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #3498db;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

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

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.intro-offset {
    padding: 120px 0;
    background: #fafafa;
}

.content-block-left {
    width: 52%;
    padding-right: 60px;
}

.content-block-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.content-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.image-block-right {
    width: 43%;
    margin-left: auto;
    margin-top: -80px;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.container-asymmetric {
    display: flex;
    align-items: center;
    gap: 5%;
}

.services-stagger {
    padding: 140px 0;
    background: #ffffff;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 80px;
    color: #2c3e50;
    font-weight: 700;
    margin-left: 15%;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.card-large {
    width: calc(55% - 15px);
}

.card-small {
    width: calc(42% - 15px);
    margin-top: 60px;
}

.card-offset {
    width: calc(48% - 15px);
    margin-left: 4%;
}

.card-wide {
    width: calc(45% - 15px);
    margin-right: auto;
}

.card-tall {
    width: calc(38% - 15px);
}

.card-accent {
    width: calc(57% - 15px);
    margin-top: -40px;
}

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

.service-content {
    padding: 35px 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 35px;
    background: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2c3e50;
    transform: translateX(5px);
}

.form-section-diagonal {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: skewY(-3deg);
}

.form-wrapper-offset {
    max-width: 700px;
    margin-left: 10%;
    background: #ffffff;
    padding: 60px 55px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.form-wrapper-offset h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.trust-section-split {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 850px;
    margin-left: 12%;
}

.trust-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.trust-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.trust-content a:hover {
    color: #5dade2;
}

.disclaimer-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px 50px;
    border-left: 5px solid #e74c3c;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.footer-asymmetric {
    background: #1a252f;
    color: #b2bec3;
    padding: 80px 0 30px;
}

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

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

.footer-block h4 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block p {
    line-height: 1.7;
    font-size: 15px;
}

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

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

.footer-block ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-block ul li a:hover {
    color: #3498db;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #5dade2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3e50;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-box {
    max-width: 650px;
    text-align: center;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

.thanks-service {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #2c3e50;
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.about-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.about-content {
    padding: 100px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-hero {
    padding: 180px 0 100px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.contact-content {
    padding: 100px 0;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.info-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #ecf0f1;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.info-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.legal-hero {
    padding: 180px 0 80px;
    background: #34495e;
    color: #ffffff;
    text-align: center;
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 800;
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #34495e;
    font-weight: 600;
}

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

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

.legal-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        margin-left: 5%;
        padding: 50px 40px;
    }

    .hero-content-offset h1 {
        font-size: 42px;
    }

    .content-block-left {
        width: 100%;
        padding-right: 0;
    }

    .image-block-right {
        width: 100%;
        margin-top: 40px;
    }

    .container-asymmetric {
        flex-direction: column;
    }

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

    .form-wrapper-offset {
        margin-left: 0;
    }

    .trust-content {
        margin-left: 0;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-floating {
        width: 95%;
        padding: 12px 20px;
        top: 15px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .ad-disclosure {
        width: 100%;
        border-left: none;
        border-top: 1px solid #ecf0f1;
        padding-left: 0;
        padding-top: 10px;
        margin-top: 10px;
    }

    .hero-asymmetric {
        margin-top: 140px;
        flex-direction: column;
    }

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

    .hero-content-offset {
        margin: -60px 20px 0;
        padding: 40px 30px;
    }

    .hero-content-offset h1 {
        font-size: 32px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 36px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 38px;
    }

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

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

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
}