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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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;
    min-width: 280px;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-items {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 0.4rem 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    background: #f8f9fa;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 8%;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.hero-image-overlap {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 45%;
    height: 70%;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.intro-offset {
    max-width: 1300px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    max-width: 520px;
    padding-top: 3rem;
}

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

.intro-image-float {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services-staggered {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
}

.section-label-offset {
    max-width: 1300px;
    margin: 0 auto 3rem 10%;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-grid-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

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

.service-wide {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
}

.service-tall {
    flex: 1 1 calc(37% - 1rem);
    min-width: 280px;
}

.service-standard {
    flex: 1 1 calc(48% - 1rem);
    min-width: 280px;
}

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

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

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

.service-details p {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

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

.btn-select-service:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.trust-irregular {
    max-width: 1300px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.trust-content-block {
    flex: 1;
    padding-right: 2rem;
}

.trust-content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.trust-points-offset {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    min-width: 120px;
}

.trust-item p {
    font-size: 1rem;
    color: #4a5568;
    padding-top: 0.5rem;
}

.trust-testimonial-float {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: -3rem;
}

.trust-testimonial-float blockquote {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #3498db;
    border-radius: 2px;
}

.trust-testimonial-float blockquote p {
    font-size: 1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.trust-testimonial-float cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.form-section-asymmetric {
    background: #ecf0f1;
    padding: 6rem 2rem;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.form-container-offset {
    max-width: 520px;
    margin-left: 8%;
    background: #ffffff;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.form-container-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.form-image-overlap {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 40%;
    height: 75%;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.bottom-cta-offset {
    max-width: 900px;
    margin: 8rem auto 8rem 12%;
    padding: 0 2rem;
}

.cta-content {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem;
    border-radius: 2px;
}

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

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cta-secondary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
}

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

.footer-columns-irregular {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-main {
    flex: 1.5;
}

.footer-block h4,
.footer-block h5 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-image-overlap {
        width: 50%;
        height: 60%;
    }

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

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

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .nav-items {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 2rem 1rem;
    }

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

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        top: 0;
        right: 0;
        margin-top: 2rem;
    }

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

    .service-wide,
    .service-tall,
    .service-standard {
        flex: 1 1 100%;
    }

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

    .bottom-cta-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-columns-irregular {
        flex-direction: column;
        gap: 2rem;
    }
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2ecc71;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.7;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
}

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

.contact-header {
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: #ecf0f1;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-header {
    margin-bottom: 4rem;
}

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

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

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

.services-header {
    margin-bottom: 4rem;
}

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

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

.service-item {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 2px;
    border-left: 4px solid #3498db;
}

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

.service-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-item .service-price {
    margin-bottom: 0;
}