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

.nav-floating {
    position: fixed;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.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: 90vh;
    align-items: center;
    padding: 6rem 3rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 4rem;
    z-index: 10;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.cta-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -8rem;
    margin-top: 4rem;
    background-color: #e8eef2;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 8rem 3rem;
    gap: 5rem;
    background-color: #f8f9fa;
}

.intro-content-left {
    flex: 1.2;
    max-width: 650px;
}

.intro-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.intro-visual-right {
    flex: 0.8;
    background-color: #d5dfe6;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-grid-irregular {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 8rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #666;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 2rem);
}

.card-small-top {
    flex: 1 1 calc(35% - 2rem);
    margin-top: -3rem;
}

.card-wide {
    flex: 1 1 calc(55% - 2rem);
}

.card-medium {
    flex: 1 1 calc(40% - 2rem);
    margin-top: 2rem;
}

.card-tall {
    flex: 1 1 calc(48% - 2rem);
}

.card-accent {
    flex: 1 1 calc(48% - 2rem);
    margin-top: -2rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8eef2;
}

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

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

.service-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.select-service {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.trust-block-diagonal {
    display: flex;
    align-items: center;
    padding: 6rem 3rem;
    gap: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.trust-block-diagonal > * {
    transform: skewY(2deg);
}

.trust-content {
    flex: 1;
    max-width: 600px;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.value-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 1.4rem;
}

.trust-image-slant {
    flex: 0.9;
    background-color: #1a252f;
}

.trust-image-slant img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-overlap {
    padding: 6rem 3rem;
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    flex: 1 1 400px;
    position: relative;
}

.testimonial-card:first-child {
    margin-top: -2rem;
}

.testimonial-card:last-child {
    margin-top: 3rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.cta-stacked {
    padding: 6rem 3rem;
    text-align: center;
    background-color: #ffffff;
}

.cta-stacked h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-stacked p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.form-section-asymmetric {
    padding: 6rem 3rem;
    display: flex;
    gap: 5rem;
    background-color: #f8f9fa;
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
    max-width: 400px;
    padding-top: 2rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-form {
    flex: 1.2;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.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: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    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 {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-col a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: #2c2c2c;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

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

.back-home-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.about-hero {
    padding: 8rem 3rem 4rem;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.about-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-list {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.services-list h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

.service-detailed {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-detailed h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detailed .price {
    font-size: 1.5rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-detailed p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-page {
    padding: 8rem 3rem 4rem;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

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

    .hero-offset {
        flex-direction: column;
        padding-top: 10rem;
    }

    .hero-text-block {
        padding-right: 0;
    }

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

    .hero-image-offset {
        margin-left: 0;
        margin-top: 2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .trust-block-diagonal {
        flex-direction: column;
        transform: skewY(0);
        gap: 2rem;
    }

    .trust-block-diagonal > * {
        transform: skewY(0);
    }

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

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

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn-accept,
    .cookie-btn-reject {
        width: 100%;
    }
}