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

.ad-disclosure {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.header-asymmetric {
    position: relative;
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-right {
    display: flex;
    gap: 32px;
}

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

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

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-image-block {
    width: 85%;
    margin-left: 15%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

.hero-content-offset {
    width: 70%;
    margin-left: 5%;
}

.intro-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.intro-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #34495e;
}

.cta-inline {
    display: inline-block;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.services-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-left: 12%;
    margin-bottom: 50px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(55% - 12px);
    min-width: 400px;
}

.card-offset {
    flex: 1 1 calc(45% - 12px);
    min-width: 350px;
    margin-top: 60px;
}

.card-small {
    flex: 1 1 calc(33% - 16px);
    min-width: 300px;
}

.card-medium {
    flex: 1 1 calc(48% - 12px);
    min-width: 350px;
    margin-left: 8%;
}

.card-wide {
    flex: 1 1 calc(52% - 12px);
    min-width: 400px;
    margin-top: -40px;
}

.card-compact {
    flex: 1 1 calc(42% - 12px);
    min-width: 320px;
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
}

.trust-section-overlapping {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content-left {
    flex: 1;
    padding-right: 40px;
}

.trust-content-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.trust-image-right {
    flex: 1;
    margin-top: -80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section-diagonal {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.form-container {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    transform: rotate(1deg);
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #7f8c8d;
    transform: rotate(1deg);
}

.main-form {
    transform: rotate(1deg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.testimonials-scattered {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials-scattered h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.testimonial {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.testimonial-offset-3 {
    margin-top: 80px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #7f8c8d;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
    margin-top: 100px;
}

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

.footer-column {
    flex: 1 1 200px;
}

.footer-col-wide {
    flex: 2 1 400px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 24px;
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(236, 240, 241, 0.1);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.about-hero-split {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-block {
    flex: 1;
    padding-right: 40px;
}

.about-text-block h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.about-text-block p {
    font-size: 20px;
    line-height: 1.6;
    color: #34495e;
}

.about-image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-content-narrow {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.story-content-narrow h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.values-section-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section-offset h2 {
    font-size: 42px;
    margin-bottom: 50px;
    margin-left: 15%;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 36px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-card:nth-child(odd) {
    margin-left: 8%;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-section-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-intro {
    flex: 1;
    padding-top: 60px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.team-image-overlap {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -40px;
}

.team-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section-inline {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.cta-content {
    background-color: #3498db;
    color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
}

.service-features {
    margin: 24px 0 24px 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #34495e;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #3498db;
    margin: 24px 0;
}

.contact-hero {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-content-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional-info {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.info-centered {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.info-centered h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.info-centered p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.checklist {
    margin: 24px 0 24px 24px;
}

.checklist li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #34495e;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.thanks-links li {
    margin-bottom: 12px;
}

.thanks-links li a {
    color: #3498db;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.thanks-links li a:hover {
    color: #2980b9;
}

.thanks-service-info {
    padding: 24px;
    background-color: #e8f4f8;
    border-radius: 8px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #2980b9;
}

.legal-content em {
    color: #7f8c8d;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .hero-offset {
        gap: 30px;
    }

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

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

    .services-grid-irregular {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .trust-section-overlapping {
        flex-direction: column;
    }

    .trust-image-right {
        margin-top: 0;
        width: 100%;
    }

    .about-hero-split,
    .team-section-asymmetric,
    .contact-content-split {
        flex-direction: column;
    }

    .service-detail-block {
        flex-direction: column !important;
        gap: 30px;
    }

    .testimonials-layout {
        flex-direction: column;
    }

    .testimonial {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 0 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

    .values-section-offset h2 {
        margin-left: 0;
    }

    .value-card {
        flex: 1 1 100%;
        margin-left: 0 !important;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}