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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #7ec8e3;
    text-decoration: underline;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
}

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

main {
    padding-top: 0;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

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

.hero-text-block {
    flex: 1;
    padding: 3rem 2rem 3rem 0;
    z-index: 10;
}

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

.hero-text-block p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.hero-image-floating {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

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

.intro-overlap {
    padding: 8rem 2rem;
    background-color: #ffffff;
    margin-top: -5rem;
    position: relative;
    z-index: 5;
}

.intro-dual {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-card-left {
    flex: 1;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transform: translateY(-50px);
}

.intro-card-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-card-left p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.intro-visual-right {
    flex: 1;
    position: relative;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.visual-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.section-header-offset {
    max-width: 600px;
    margin: 0 0 4rem 8rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.service-offset {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
    transform: translateY(40px);
}

.service-elevated {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
    transform: translateY(-40px);
}

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

.service-image-bg {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

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

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

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.testimonial-diagonal {
    padding: 6rem 2rem;
    background-color: #2c3e50;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-block {
    flex: 1;
    padding: 3rem;
    transform: translateX(40px);
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-size: 1.1rem;
    color: #bdc3c7;
    font-style: normal;
}

.testimonial-visual {
    flex: 1;
    transform: translateY(-60px);
}

.testimonial-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.process-stacked {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.process-stacked h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-right {
    margin-left: 0;
    margin-right: 4rem;
}

.step-left {
    margin-left: 4rem;
    margin-right: 0;
}

.step-center {
    margin-left: 2rem;
    margin-right: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section-angular {
    padding: 6rem 2rem;
    background-color: #3498db;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-content-box {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-box h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content-box p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2rem;
}

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

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

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro {
    flex: 0 0 300px;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.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.9rem;
    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-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-brand-section {
    flex: 1;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand-section p {
    font-size: 1rem;
    color: #bdc3c7;
    max-width: 350px;
}

.footer-links-section {
    flex: 1;
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

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

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

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

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 1rem auto 0;
}

@media (max-width: 1024px) {
    .nav-floating {
        position: static;
        margin: 1rem;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-content-offset {
        flex-direction: column;
    }

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

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

    .intro-card-left {
        transform: none;
    }

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

    .service-card {
        transform: none !important;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .testimonial-block {
        transform: none;
    }

    .testimonial-visual {
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .section-header-offset {
        margin-left: 2rem;
    }

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

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

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