* {
    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: 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;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-block {
    transform: translateY(-5px);
}

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

.nav-offset {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

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

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

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

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

.hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-content-left {
    flex: 1;
    transform: translateX(-2rem);
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.hero-image-overlap {
    flex: 1;
    transform: translateY(2rem);
    position: relative;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left-block {
    flex: 1.5;
    transform: translateY(3rem);
}

.intro-left-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.intro-right-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: #555;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.services-header-offset {
    margin-bottom: 4rem;
    transform: translateX(3rem);
}

.services-header-offset h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card-large {
    flex: 1 1 calc(55% - 1rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1rem);
}

.service-card-offset {
    flex: 1 1 calc(45% - 1rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(2rem);
}

.service-card-small {
    flex: 1 1 calc(38% - 1rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(-1.5rem);
}

.service-card-wide {
    flex: 1 1 calc(62% - 1rem);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(1.5rem);
}

.service-card-elevated {
    flex: 1 1 100%;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2rem);
    display: flex;
}

.service-card-elevated .service-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-card-elevated .service-content {
    flex: 1;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.875rem 2rem;
    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;
    transform: translateY(-2px);
}

.form-section-offset {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.form-wrapper-irregular {
    display: flex;
    gap: 4rem;
    background-color: #f8f9fa;
    padding: 4rem;
    border-radius: 8px;
    transform: rotate(-1deg);
}

.form-header-left {
    flex: 1;
    transform: translateY(1rem);
}

.form-header-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-header-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.form-asymmetric {
    flex: 1.2;
    transform: rotate(1deg);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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-form-submit {
    padding: 1rem 3rem;
    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-form-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-overlap {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-content-right {
    flex: 1;
    transform: translateX(2rem);
}

.trust-content-right h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.trust-image-left {
    flex: 1;
    transform: translateY(-2rem);
}

.trust-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.footer-irregular {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 8rem;
}

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

.footer-col-offset {
    flex: 1.5;
    transform: translateY(-1rem);
}

.footer-col-elevated {
    flex: 1;
    transform: translateY(1rem);
}

.footer-col-standard {
    flex: 1;
}

.footer-main h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-main p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-main ul li {
    margin-bottom: 0.75rem;
}

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

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

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

.disclaimer-footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-container .btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-back:hover {
    background-color: #2980b9;
}

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

.page-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.page-container h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.page-container p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-container ul li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

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

.contact-info-block h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-block p {
    margin-bottom: 0.5rem;
}

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

    .hero-content-left {
        transform: translateX(0);
    }

    .hero-image-overlap {
        transform: translateY(0);
    }

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

    .intro-left-block {
        transform: translateY(0);
    }

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

    .service-card-large,
    .service-card-offset,
    .service-card-small,
    .service-card-wide,
    .service-card-elevated {
        flex: 1 1 100%;
        transform: translateY(0) translateX(0);
    }

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

    .form-wrapper-irregular {
        flex-direction: column;
        transform: rotate(0);
    }

    .form-asymmetric {
        transform: rotate(0);
    }

    .trust-overlap {
        flex-direction: column-reverse;
    }

    .trust-content-right {
        transform: translateX(0);
    }

    .trust-image-left {
        transform: translateY(0);
    }

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

    .footer-col-offset,
    .footer-col-elevated {
        transform: translateY(0);
    }
}

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

    .nav-offset {
        align-items: center;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

    .hero-text {
        font-size: 1.1rem;
    }

    .services-header-offset {
        transform: translateX(0);
    }

    .form-wrapper-irregular {
        padding: 2rem;
    }
}