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

:root {
    --primary-color: #2d3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
}

.navbar-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: var(--spacing-lg) 5%;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -5rem;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.intro-offset {
    display: flex;
    padding: var(--spacing-xl) 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-light);
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.intro-image-side {
    flex: 1;
    background-color: #e8eef3;
}

.intro-image-side img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.services-grid-irregular {
    padding: var(--spacing-xl) 5%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 2rem;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    object-fit: cover;
    background-color: #e8eef3;
}

.card-large img {
    height: 320px;
}

.card-medium img {
    height: 260px;
}

.card-small img {
    height: 200px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 1.5rem 1rem 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 1.5rem;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: scale(1.02);
}

.trust-block-offset {
    display: flex;
    padding: var(--spacing-xl) 5%;
    gap: 5rem;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
}

.trust-content {
    flex: 2;
}

.trust-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.trust-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.form-section-diagonal {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    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: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.testimonials-stagger {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-white);
}

.testimonials-stagger h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card .author {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-style: normal;
}

.testi-left {
    margin-left: 0;
    margin-right: auto;
    max-width: 70%;
}

.testi-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 70%;
}

.testi-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
}

.footer-split {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 5% var(--spacing-md) 5%;
}

.footer-main {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.75);
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-bottom .disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 1rem auto 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero-minimal {
    padding: var(--spacing-lg) 5%;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.page-hero-minimal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-minimal p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-content-offset {
    display: flex;
    padding: var(--spacing-xl) 5%;
    gap: 4rem;
    align-items: center;
}

.about-text-main {
    flex: 1.3;
}

.about-text-main h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text-main p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.about-image-float {
    flex: 1;
    background-color: #e8eef3;
}

.about-image-float img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.values-asymmetric {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.val-left {
    margin-right: auto;
    max-width: 60%;
}

.val-right {
    margin-left: auto;
    max-width: 60%;
}

.val-center {
    margin: 0 auto;
    max-width: 70%;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-diagonal {
    padding: var(--spacing-xl) 5%;
    background-color: white;
}

.process-diagonal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-offset {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.services-detailed {
    padding: var(--spacing-xl) 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8eef3;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-layout-asymmetric {
    display: flex;
    padding: var(--spacing-xl) 5%;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8eef3;
}

.contact-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 6px;
}

.location-section {
    padding: var(--spacing-xl) 5%;
    background-color: var(--bg-light);
}

.location-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-section > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

.location-details {
    display: flex;
    gap: 3rem;
}

.location-item {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
}

.location-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-offset {
    padding: var(--spacing-xl) 5%;
}

.faq-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-page-content {
    display: flex;
    padding: var(--spacing-xl) 5%;
    gap: 4rem;
    align-items: center;
}

.thanks-message {
    flex: 1.5;
}

.thanks-message h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-service-info p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 2rem;
}

.thanks-next-steps li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

.thanks-visual {
    flex: 1;
    background-color: #e8eef3;
}

.thanks-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
}

.legal-page {
    padding: var(--spacing-xl) 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-page li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-page a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-page strong {
    color: var(--text-dark);
}

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

    .hero-content-offset {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image-overlap {
        margin-left: 0;
    }

    .hero-content-offset h1 {
        font-size: 2.2rem;
    }

    .intro-offset,
    .about-content-offset,
    .contact-layout-asymmetric,
    .thanks-page-content {
        flex-direction: column;
    }

    .trust-block-offset {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .location-details {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .val-left,
    .val-right,
    .val-center {
        max-width: 100%;
    }

    .testi-left,
    .testi-right,
    .testi-center {
        max-width: 100%;
    }
}