* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background-color: #ffffff;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-left: 8%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-right: 12%;
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 5%;
    gap: 40px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-left: 8%;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #555;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-right: 5%;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stats-overlay {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 5%;
    background-color: #2c3e50;
    color: #ffffff;
    position: relative;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-offset {
    margin-top: 25px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3498db;
}

.stat-label {
    font-size: 15px;
    text-align: center;
    color: #ecf0f1;
}

.intro-asymmetric {
    display: flex;
    padding: 90px 5%;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
}

.intro-text-block {
    flex: 1.2;
    padding-left: 10%;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #555;
    line-height: 1.8;
}

.intro-image-offset {
    flex: 0.8;
    margin-top: 60px;
    margin-right: 8%;
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

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

.section-title-offset {
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 800;
    margin-left: 8%;
}

.services-container-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-large {
    width: calc(60% - 15px);
}

.card-small {
    width: calc(40% - 15px);
    margin-top: 40px;
}

.card-medium {
    width: calc(45% - 15px);
}

.card-offset {
    width: calc(35% - 15px);
    margin-top: -30px;
}

.card-wide {
    width: calc(65% - 15px);
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 12px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 18px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 15px 25px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-diagonal {
    display: flex;
    padding: 90px 5%;
    gap: 50px;
    background-color: #ffffff;
    align-items: center;
}

.form-container-offset {
    flex: 1;
    padding-left: 8%;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 35px;
    color: #666;
}

.asymmetric-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

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

.form-image-overlap {
    flex: 0.9;
    margin-right: 5%;
    margin-top: -50px;
}

.form-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.trust-block-offset {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.trust-block-offset h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 800;
}

.testimonials-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-left {
    margin-left: 10%;
    margin-right: 20%;
}

.testimonial-right {
    margin-left: 20%;
    margin-right: 10%;
}

.testimonial-center {
    margin-left: 15%;
    margin-right: 15%;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #3498db;
}

.final-cta-asymmetric {
    padding: 80px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 12%;
    color: #ffffff;
}

.cta-content-irregular h2 {
    font-size: 46px;
    margin-bottom: 22px;
    font-weight: 800;
}

.cta-content-irregular p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

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

.footer-about {
    flex: 1.5;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

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

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

.footer-disclaimer {
    background-color: #34495e;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

    .hero-content-left {
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .hero-image-right {
        margin-right: 0;
        margin-top: 0;
    }

    .stats-overlay {
        flex-direction: column;
        gap: 30px;
    }

    .stat-offset {
        margin-top: 0;
    }

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

    .intro-text-block {
        padding-left: 0;
    }

    .intro-image-offset {
        margin-top: 0;
        margin-right: 0;
    }

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

    .service-card,
    .card-large,
    .card-small,
    .card-medium,
    .card-offset,
    .card-wide {
        width: 100%;
        margin-top: 0;
    }

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

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

    .form-image-overlap {
        margin-right: 0;
        margin-top: 0;
    }

    .testimonial-left,
    .testimonial-right,
    .testimonial-center {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-content-irregular {
        margin-left: 0;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
    }
}

.page-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c3e50;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-block {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.about-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.about-column {
    flex: 1;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
}

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

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin-top: 10px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    max-width: 600px;
    line-height: 1.7;
}

.thanks-cta {
    margin-top: 30px;
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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