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

.ad-disclosure {
    background: #fff8dc;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #8b7355;
    border-bottom: 1px solid #e8dcc4;
}

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

.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;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

.btn-cookie, .btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cookie {
    background: #4CAF50;
    color: white;
}

.btn-cookie:hover {
    background: #45a049;
}

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

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

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 12px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    position: relative;
    margin-left: 5%;
}

.hero-title {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 16px 38px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: -150px;
    top: 15%;
    width: 55%;
    z-index: 1;
}

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

.intro-offset {
    padding: 100px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.intro-block-left {
    flex: 1.5;
    max-width: 650px;
}

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

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

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.services-irregular {
    padding: 120px 60px;
    background: white;
}

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

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(55% - 15px);
}

.service-medium {
    flex: 1 1 calc(45% - 15px);
}

.service-small {
    flex: 1 1 calc(33% - 20px);
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-content h3 {
    font-size: 26px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-top: 10px;
}

.btn-select-service {
    padding: 12px 28px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.form-section-diagonal {
    padding: 100px 60px;
    background: linear-gradient(165deg, #667eea 0%, #764ba2 100%);
    transform: skewY(-3deg);
    margin: 80px 0;
}

.form-container {
    transform: skewY(3deg);
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.selected-service-box {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-box strong {
    color: #27ae60;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

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

.trust-overlap {
    padding: 100px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8f9fc;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.footer-asymmetric {
    background: #1a1a2e;
    color: white;
    padding: 60px 60px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 50%;
        right: -100px;
    }

    .service-large, .service-medium, .service-small {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        margin: 20px;
    }

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

    .hero-content-offset {
        margin-left: 0;
    }

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

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

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

    .services-irregular {
        padding: 60px 20px;
    }

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

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

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

    .form-container {
        transform: none;
        padding: 30px 20px;
    }

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: white;
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: white;
}

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

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

.thanks-service {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.thanks-service strong {
    color: #3498db;
    font-size: 16px;
}

.thanks-service span {
    display: block;
    font-size: 20px;
    color: #2c3e50;
    margin-top: 8px;
    font-weight: 600;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

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

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

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

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

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

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

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

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 40px 20px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}