* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    border-left: 1px solid #ecf0f1;
    padding-left: 20px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 50px 50px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 24px;
}

.highlight {
    color: #3498db;
}

.hero-subtitle {
    font-size: 22px;
    color: #7f8c8d;
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    background: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

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

.intro-section {
    padding: 120px 50px;
    display: flex;
    align-items: center;
    gap: 80px;
    background: #f8f9fa;
}

.intro-block-left {
    flex: 1;
    padding-left: 8%;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.intro-image-right {
    flex: 0.8;
    background: #d5d8dc;
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(-30px);
}

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

.services-asymmetric {
    padding: 100px 50px 120px;
    background: #fff;
}

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

.section-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-header-offset p {
    font-size: 20px;
    color: #7f8c8d;
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 {
    flex: 0 0 calc(40% - 20px);
    margin-top: 0;
}

.card-offset-2 {
    flex: 0 0 calc(60% - 20px);
    margin-top: 60px;
}

.card-offset-3 {
    flex: 0 0 calc(55% - 20px);
    margin-top: -40px;
}

.card-offset-4 {
    flex: 0 0 calc(45% - 20px);
    margin-top: 20px;
}

.card-offset-5 {
    flex: 0 0 calc(48% - 20px);
    margin-top: 40px;
}

.card-offset-6 {
    flex: 0 0 calc(52% - 20px);
    margin-top: -20px;
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 24px 12px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 24px 16px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 0 24px 20px;
}

.service-card ul li {
    font-size: 14px;
    color: #7f8c8d;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #3498db;
    margin: 20px 24px;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px 28px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 15%;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

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

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 16px;
    color: #7f8c8d;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.trust-section {
    padding: 100px 50px;
    background: #2c3e50;
    color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    color: #bdc3c7;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 60px 50px;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 50px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 30px 50px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: rotate(0);
    }

    .intro-section {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

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

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

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

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

    .form-container-asymmetric {
        margin-left: 0;
        transform: rotate(0);
    }

    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        top: 10px;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .section-header-offset h2 {
        font-size: 36px;
    }

    .form-container-asymmetric {
        padding: 30px;
    }

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