* {
    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 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    z-index: 1000;
    border-bottom: 1px solid #f5c6cb;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 30px;
    width: 240px;
    height: calc(100vh - 30px);
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 900;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 25px;
}

.nav-links a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #2a2a3e;
}

.nav-footer a {
    color: #7a7a8e;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: #b8b8d1;
}

.main-offset {
    margin-left: 240px;
    margin-top: 30px;
    min-height: 100vh;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 80px 60px;
    position: relative;
    background-color: #f7f9fc;
}

.hero-content-shifted {
    width: 45%;
    padding-right: 60px;
    z-index: 2;
}

.hero-title-large {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.hero-subtitle {
    font-size: 22px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 18px 42px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.hero-image-offset {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 75%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e2e8f0;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-narrow {
    padding: 100px 60px;
    background-color: #ffffff;
}

.intro-block {
    max-width: 680px;
    margin: 0 auto;
}

.intro-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.intro-block p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.value-cards-stagger {
    padding: 100px 60px;
    background-color: #f7f9fc;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.card-offset-left,
.card-offset-right {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
}

.card-offset-left {
    align-self: flex-start;
}

.card-offset-right {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.card-offset-left img,
.card-offset-right img {
    width: 380px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #cbd5e0;
}

.card-offset-left h3,
.card-offset-right h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.card-offset-left p,
.card-offset-right p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.testimonial-full {
    padding: 120px 60px;
    background-color: #1a1a2e;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrapper blockquote {
    border: none;
}

.testimonial-wrapper p {
    font-size: 32px;
    font-style: italic;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-wrapper cite {
    font-size: 18px;
    color: #b8b8d1;
    font-style: normal;
}

.services-asymmetric {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.services-header-offset p {
    font-size: 20px;
    color: #4a5568;
}

.service-row-alternate {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-row-alternate.reverse {
    flex-direction: row-reverse;
}

.service-detail {
    flex: 1;
}

.service-detail h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-detail p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 25px;
}

.cta-service {
    padding: 14px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-service:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    background-color: #e2e8f0;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.form-section-embedded {
    padding: 100px 60px;
    background-color: #f7f9fc;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 120px;
}

.form-container-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.form-container-offset p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.why-section-split {
    display: flex;
    padding: 100px 60px;
    background-color: #ffffff;
    gap: 80px;
    align-items: center;
}

.why-text {
    flex: 1.5;
}

.why-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.why-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.why-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    padding: 30px;
    background-color: #f7f9fc;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.final-cta-offset {
    padding: 120px 60px;
    background-color: #1a1a2e;
    text-align: center;
}

.final-cta-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.final-cta-offset p {
    font-size: 22px;
    color: #b8b8d1;
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    padding: 20px 50px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-final:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.footer-extended {
    background-color: #0f0f1e;
    color: #b8b8d1;
    padding: 60px 60px 30px 300px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #1a1a2e;
    border-bottom: 1px solid #1a1a2e;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #9090a0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #7a7a8e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 240px;
    right: 0;
    background-color: #1a1a2e;
    padding: 25px 60px;
    display: none;
    z-index: 1000;
    border-top: 2px solid #2a2a3e;
}

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

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

.cookie-content p {
    flex: 1;
    color: #b8b8d1;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #2c3e50;
}

.cookie-link {
    color: #b8b8d1;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #ffffff;
}

.about-hero {
    padding: 100px 60px;
    background-color: #f7f9fc;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    line-height: 1.7;
}

.about-content {
    padding: 100px 60px;
    background-color: #ffffff;
}

.about-section {
    max-width: 900px;
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.about-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-page {
    padding: 100px 60px;
    background-color: #ffffff;
}

.contact-info-grid {
    display: flex;
    gap: 80px;
    max-width: 1100px;
}

.contact-column {
    flex: 1;
}

.contact-column h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-container {
    padding: 150px 60px;
    text-align: center;
    background-color: #f7f9fc;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-container h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.thanks-container p {
    font-size: 22px;
    color: #4a5568;
    max-width: 700px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container .selected-service {
    font-size: 20px;
    color: #2563eb;
    font-weight: 600;
    margin-top: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #1d4ed8;
}

.legal-page {
    padding: 100px 60px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.legal-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-offset {
        margin-left: 200px;
    }

    .footer-extended {
        padding-left: 260px;
    }

    .cookie-banner {
        left: 200px;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }

    .main-offset {
        margin-left: 0;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 30px;
    }

    .hero-content-shifted {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        transform: none;
    }

    .service-row-alternate,
    .service-row-alternate.reverse {
        flex-direction: column;
    }

    .why-section-split {
        flex-direction: column;
    }

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

    .footer-extended {
        padding-left: 60px;
    }

    .cookie-banner {
        left: 0;
    }

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