* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
    border-bottom: 1px solid #bdc3c7;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.logo-container {
    flex: 0 0 auto;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-split {
    display: flex;
    gap: 35px;
}

.nav-split a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    align-items: center;
    background-color: #ecf0f1;
}

.hero-text-block {
    max-width: 500px;
}

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

.hero-subtext {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image-offset {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-left: -30px;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-asymmetric {
    display: flex;
    margin: 120px 0;
    padding: 0 5%;
    gap: 60px;
}

.intro-block-left {
    flex: 0 0 55%;
    padding-right: 40px;
}

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

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

.intro-image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transform: translateY(40px);
}

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

.services-offset {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.services-header-diagonal {
    margin-bottom: 60px;
    padding-left: 3%;
}

.services-header-diagonal h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header-diagonal p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 0;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

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

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

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

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

.card-offset-6 {
    margin-top: 50px;
}

.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h4 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 15px;
    color: #555;
    font-size: 0.95rem;
}

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #27ae60;
    margin: 15px 20px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-diagonal {
    padding: 100px 8% 100px 12%;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 5%;
}

.form-container-offset h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.form-intro {
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: #ecf0f1;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #ecf0f1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2c3e50;
}

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

.cta-submit {
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section-offset {
    padding: 100px 10% 100px 15%;
    background-color: #ffffff;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonials-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-block:nth-child(even) {
    margin-left: 80px;
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 5%;
    background-color: #ecf0f1;
}

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

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

.footer-content-offset {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-block p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #6c7a89;
}

.about-hero-offset {
    padding: 80px 5% 80px 10%;
    background-color: #ecf0f1;
}

.about-content-diagonal {
    max-width: 700px;
}

.about-content-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
}

.story-block-left {
    flex: 0 0 55%;
}

.story-block-left h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.story-image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.story-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section-offset {
    padding: 80px 10% 80px 15%;
    background-color: #f8f9fa;
}

.values-section-offset h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.value-card:nth-child(even) {
    margin-left: 60px;
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.team-section-diagonal {
    padding: 80px 5% 80px 12%;
    background-color: #ffffff;
}

.team-content {
    max-width: 700px;
}

.team-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.cta-section-offset {
    padding: 100px 5%;
    background-color: #3498db;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.services-detail-asymmetric {
    padding: 80px 5%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.card-offset-left {
    flex-direction: row;
}

.card-offset-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.price-highlight {
    font-weight: 700;
    font-size: 1.4rem;
    color: #27ae60;
    margin-top: 20px;
}

.service-process-offset {
    padding: 100px 8%;
    background-color: #f8f9fa;
}

.process-content h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.process-steps-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 4px;
}

.process-step:nth-child(even) {
    margin-left: 80px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-hero-offset {
    padding: 80px 5% 80px 10%;
    background-color: #ecf0f1;
}

.contact-content-diagonal {
    max-width: 700px;
}

.contact-content-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.contact-info-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
}

.contact-block-left,
.contact-block-right {
    flex: 1;
}

.contact-block-left h3,
.contact-block-right h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-block-left p,
.contact-block-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.hours-section-offset {
    padding: 80px 10% 80px 15%;
    background-color: #f8f9fa;
}

.hours-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.hours-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 4px;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.time {
    color: #555;
}

.hours-note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.contact-map-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.map-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-content p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-hero-offset {
    padding: 120px 5%;
    background-color: #ecf0f1;
    text-align: center;
}

.thanks-content-center {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.service-confirmation {
    font-size: 1.05rem;
    font-weight: 600;
    color: #27ae60;
    margin-top: 15px;
}

.next-steps-asymmetric {
    padding: 100px 8%;
}

.next-steps-content h3 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 60px;
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.additional-info-offset {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.info-content {
    max-width: 700px;
    margin: 0 auto;
}

.info-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #555;
}

.info-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.info-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.info-link:hover {
    background-color: #bdc3c7;
}

.legal-content {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.legal-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-wrapper h3 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-wrapper h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-wrapper p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-wrapper ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #7f8c8d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: #ecf0f1;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #bdc3c7;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

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

    .hero-content-offset {
        flex: 1;
        padding: 60px 5%;
    }

    .hero-image-offset {
        margin-left: 0;
        min-height: 300px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image-right {
        transform: none;
    }

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

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

    .service-detail-card {
        flex-direction: column;
    }

    .card-offset-right {
        flex-direction: column;
    }

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .steps-grid {
        flex-direction: column;
    }

    .footer-content-offset {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .nav-split {
        gap: 20px;
    }
}
