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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem;
    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: 1.5rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    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: 2px solid #fff;
}

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

.main-header {
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.8rem;
    background: #ecf0f1;
    border-radius: 3px;
}

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

.hero-content-offset {
    position: absolute;
    left: 8%;
    top: 25%;
    z-index: 10;
    max-width: 520px;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.intro-asymmetric {
    padding: 8rem 2rem 6rem;
    background: #fff;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-top: 3rem;
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-left p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.intro-right-offset {
    flex: 1;
    margin-top: -4rem;
    background: #ecf0f1;
}

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

.services-asymmetric {
    padding: 7rem 2rem;
    background: #f8f9fa;
}

.services-header-offset {
    max-width: 650px;
    margin: 0 0 5rem 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #555;
}

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

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

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

.offset-1 {
    width: calc(45% - 1.5rem);
    margin-left: 5%;
}

.offset-2 {
    width: calc(48% - 1.5rem);
    margin-top: 4rem;
}

.offset-3 {
    width: calc(42% - 1.5rem);
    margin-left: auto;
    margin-right: 8%;
}

.offset-4 {
    width: calc(50% - 1.5rem);
    margin-left: 3%;
    margin-top: -2rem;
}

.offset-5 {
    width: calc(46% - 1.5rem);
    margin-top: 3rem;
}

.service-image-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e8eef2;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.08);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-info p {
    margin-bottom: 1rem;
    color: #555;
    flex: 1;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background: #3498db;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section-offset {
    padding: 8rem 2rem;
    background: #fff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 15%;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.selected-service-label {
    font-weight: 600;
    color: #3498db;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.contact-form {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

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

.trust-section {
    padding: 7rem 2rem;
    background: #2c3e50;
    color: #fff;
}

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

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-left: 4px solid #3498db;
}

.offset-left {
    margin-left: 0;
    margin-right: 25%;
}

.offset-right {
    margin-left: 25%;
    margin-right: 0;
}

.offset-center {
    margin-left: 12%;
    margin-right: 12%;
}

.testimonial p:first-child {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #95a5a6;
    font-size: 0.95rem;
}

.values-asymmetric {
    padding: 8rem 2rem;
    background: #ecf0f1;
}

.values-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.value-block {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.offset-a {
    width: 55%;
    margin-left: 5%;
}

.offset-b {
    width: 60%;
    margin-left: auto;
    margin-right: 8%;
}

.offset-c {
    width: 50%;
    margin-left: 15%;
}

.value-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.final-cta-asymmetric {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col p {
    color: #95a5a6;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.95rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-service {
    font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.legal-page {
    padding: 5rem 2rem;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 2rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-content-offset {
        left: 5%;
        max-width: 450px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-right-offset {
        margin-top: 0;
    }

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

    .offset-1, .offset-2, .offset-3, .offset-4, .offset-5 {
        width: 100%;
        margin: 0 0 2rem 0;
    }

    .form-container-asymmetric {
        flex-direction: column;
        margin: 0 auto;
    }

    .offset-left, .offset-right, .offset-center {
        margin-left: 0;
        margin-right: 0;
    }

    .offset-a, .offset-b, .offset-c {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        position: relative;
        left: 0;
        top: 0;
        max-width: 100%;
        margin: 2rem;
    }

    .hero-text-block {
        padding: 2rem;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept, .btn-reject {
        width: 100%;
    }
}