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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    align-items: center;
    position: relative;
    padding-top: 6rem;
}

.hero-content-offset {
    width: 55%;
    padding: 4rem 2rem 4rem 8%;
    z-index: 10;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #34495e;
}

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

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

.hero-visual-block {
    position: absolute;
    right: 0;
    top: 15%;
    width: 50%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.15);
}

.intro-offset {
    display: flex;
    padding: 8rem 8% 8rem 12%;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.intro-text-narrow {
    width: 50%;
    max-width: 600px;
}

.intro-text-narrow h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.intro-image-overlap {
    width: 40%;
    position: relative;
}

.intro-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.services-grid-irregular {
    padding: 6rem 8%;
    background-color: #f8f9fa;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.service-large {
    width: calc(60% - 1rem);
}

.service-medium {
    width: calc(40% - 1rem);
}

.service-small {
    width: calc(33.333% - 1.33rem);
}

.service-visual {
    height: 250px;
    background-size: cover;
    background-position: center;
}

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

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

.service-content p {
    margin-bottom: 1.5rem;
    color: #34495e;
    flex-grow: 1;
}

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

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.trust-block-diagonal {
    display: flex;
    padding: 8rem 0;
    align-items: center;
}

.trust-content-left {
    width: 50%;
    padding: 0 8% 0 8%;
}

.trust-content-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trust-content-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.trust-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-visual-right {
    width: 50%;
    height: 600px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonials-staggered {
    padding: 8rem 8%;
    background-color: #f8f9fa;
}

.testimonials-staggered h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.testimonial-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-left {
    margin-left: 0;
    margin-right: 20%;
}

.testimonial-right {
    margin-left: 20%;
    margin-right: 0;
}

.testimonial-center {
    margin-left: 10%;
    margin-right: 10%;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-section-asymmetric {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.cta-content-block {
    max-width: 800px;
    margin-left: 10%;
    color: #ffffff;
}

.cta-content-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content-block p {
    font-size: 1.3rem;
}

.form-section-offset {
    padding: 8rem 8%;
}

.form-container-narrow {
    max-width: 600px;
    margin-left: 15%;
}

.form-container-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container-narrow > p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    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 {
    padding: 1.1rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.disclaimer-section {
    padding: 3rem 8%;
    background-color: #ecf0f1;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #34495e;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 8% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-block p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.footer-block a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.page-header {
    padding: 10rem 8% 4rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 8%;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.content-wrapper ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.services-list-page {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.service-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(50% - 1rem);
}

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

.service-item p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.service-item .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.contact-info-block {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 8%;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-content .selected-service {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.thanks-content .selected-service strong {
    color: #2c3e50;
    font-size: 1.4rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 2rem;
    }

    .hero-title-large {
        font-size: 3rem;
    }

    .hero-visual-block {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 12px;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .intro-text-narrow,
    .intro-image-overlap {
        width: 100%;
    }

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

    .trust-block-diagonal {
        flex-direction: column;
    }

    .trust-content-left,
    .trust-visual-right {
        width: 100%;
    }

    .trust-visual-right {
        height: 400px;
        clip-path: none;
        border-radius: 12px;
    }

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

    .service-item {
        width: 100%;
    }

    .nav-floating {
        width: 95%;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

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

    .section-header-offset h2 {
        font-size: 2rem;
    }

    .form-container-narrow {
        margin-left: 0;
    }

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