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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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: 1rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #7f8c8d;
}

.header-asymmetric {
    background-color: #f8f9fa;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-block {
    margin-right: 2rem;
}

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

.nav-offset {
    margin-left: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid #bdc3c7;
}

.hero-asymmetric {
    background-color: #ecf0f1;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding: 4rem 3rem;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    height: 600px;
    margin-left: -50px;
    background-color: #bdc3c7;
}

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

.intro-offset {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-left {
    flex: 1.2;
    padding-right: 2rem;
}

.intro-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.8;
}

.intro-right-image {
    flex: 0.8;
    background-color: #95a5a6;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-irregular {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.services-header-offset h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 40px;
}

.service-card.offset-3 {
    margin-top: 20px;
}

.service-card.offset-4 {
    margin-top: 60px;
}

.service-card.offset-5 {
    margin-top: 30px;
}

.service-image-wrap {
    width: 100%;
    height: 220px;
    background-color: #bdc3c7;
    overflow: hidden;
}

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

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

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

.service-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0 1.5rem 0;
}

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

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

.form-section-offset {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 2rem;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #34495e;
}

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

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

.contact-form-styled input,
.contact-form-styled select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-styled input:focus,
.contact-form-styled select:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form-styled input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

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

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

.trust-section-irregular {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-content h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-blocks {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.trust-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.trust-author {
    font-size: 0.95rem;
    color: #ecf0f1;
    font-weight: 500;
}

.final-cta-offset {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.cta-content-block p {
    font-size: 1.15rem;
    color: #34495e;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem 2rem;
}

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

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

.footer-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

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

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

.contact-block p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

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

    .hero-image-overlap {
        margin-left: 0;
        width: 100%;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-list {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .trust-blocks {
        flex-direction: column;
    }

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

.thanks-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #3498db;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #34495e;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-info-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.6;
}

.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-page p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
    color: #34495e;
}

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.services-page-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.services-page-intro p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #34495e;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-detail-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #34495e;
}

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