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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-asymmetric {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 20px 0;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    margin-left: 80px;
    margin-top: -40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 0;
    width: 65%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    background-color: #e8f4f8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #34495e;
}

.intro-overlap {
    max-width: 1400px;
    margin: -80px auto 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-card-left {
    flex: 1;
    background-color: #f8f9fa;
    padding: 50px;
    margin-right: -30px;
    z-index: 5;
}

.intro-card-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.intro-visual-right {
    flex: 1;
    background-color: #dfe6e9;
}

.intro-visual-right img {
    width: 100%;
    height: 400px;
    display: block;
}

.services-staggered {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 80px;
}

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

.service-block-left,
.service-block-right,
.service-block-center,
.service-block-right-narrow {
    margin-bottom: 100px;
}

.service-block-left {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-left: 5%;
}

.service-block-right {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-image-float {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image-float img {
    width: 100%;
    height: 450px;
    display: block;
}

.service-info-right,
.service-info-left {
    flex: 1;
}

.service-info-right h3,
.service-info-left h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info-right p,
.service-info-left p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.price-badge {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-select {
    display: inline-block;
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.service-block-center {
    display: flex;
    justify-content: center;
}

.service-card-full {
    max-width: 700px;
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-card-full img {
    width: 100%;
    height: 350px;
    display: block;
}

.service-card-content {
    padding: 40px;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-block-right-narrow {
    max-width: 500px;
    margin-left: auto;
    margin-right: 10%;
}

.service-info-compact {
    background-color: #f8f9fa;
    padding: 40px;
}

.service-info-compact h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info-compact p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.form-section-offset {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-intro {
    margin-bottom: 50px;
    text-align: center;
}

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

.form-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.cta-submit {
    width: 100%;
    padding: 18px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #34495e;
}

.trust-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.trust-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    margin-left: 10%;
    color: #2c3e50;
}

.testimonial-block-left {
    background-color: #f8f9fa;
    padding: 40px;
    margin-bottom: 40px;
    margin-left: 5%;
    max-width: 600px;
}

.testimonial-block-right {
    background-color: #e8f4f8;
    padding: 40px;
    margin-left: auto;
    margin-right: 5%;
    max-width: 600px;
}

.testimonial-block-left p,
.testimonial-block-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

.testimonial-block-left span,
.testimonial-block-right span {
    font-weight: 600;
    color: #4a4a4a;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col-offset {
    flex: 1;
    margin-top: -20px;
}

.footer-col {
    flex: 1;
}

.footer-col-offset h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #95a5a6;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-highlight {
    background-color: #e8f4f8;
    padding: 30px;
    margin: 30px 0;
}

.thanks-highlight strong {
    color: #2c3e50;
    font-size: 1.3rem;
}

.page-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-container h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-container p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-container ul,
.page-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.page-container a {
    color: #3498db;
    text-decoration: underline;
}

.contact-info-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-column {
    flex: 1;
}

.contact-column h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-column p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.contact-column strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-text-block {
        margin-left: 40px;
        padding: 40px;
    }

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

    .intro-card-left {
        margin-right: 0;
    }

    .service-block-left,
    .service-block-right {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-image-diagonal {
        width: 100%;
        clip-path: none;
    }

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

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