* {
    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;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content-offset {
    max-width: 580px;
    margin-bottom: 40px;
    padding-right: 60px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 35px;
}

.hero-cta-inline {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #ecf0f1;
    color: #2c3e50;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #d5dbdd;
    transform: translateY(-2px);
}

.hero-image-overlap {
    width: 100%;
    margin-left: 120px;
    margin-top: -80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-offset {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1.2;
    max-width: 620px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.intro-visual-card {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    align-self: center;
    margin-top: 40px;
    background-color: #f8f9fa;
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid-offset {
    padding: 100px 30px;
    background-color: #fafbfc;
}

.section-header-left {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
}

.services-asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(50% - 18px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e9ecef;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 0 24px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 0 24px;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section-offset {
    padding: 100px 30px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 680px;
    margin: 0 auto 0 80px;
}

.form-container-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    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: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-offset {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    align-items: center;
}

.trust-content-narrow {
    flex: 1;
}

.trust-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.trust-stats-overlap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.disclaimer-section {
    background-color: #fef5e7;
    padding: 50px 30px;
    margin: 60px 0;
}

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

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 30px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

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

.cookie-learn-more {
    color: #3498db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.cookie-learn-more:hover {
    color: #5dade2;
}

.page-hero-minimal {
    text-align: center;
    padding: 80px 30px 60px;
    background-color: #f8f9fa;
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 20px;
    color: #555;
}

.about-content-offset {
    display: flex;
    gap: 70px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.about-text-primary h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text-primary p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-image-overlap {
    flex: 0.7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin-top: 80px;
    background-color: #f8f9fa;
}

.about-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-approach-asymmetric {
    display: flex;
    gap: 70px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    background-color: #fafbfc;
    padding: 80px 60px;
    border-radius: 12px;
}

.approach-visual {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.cta-section-minimal {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.services-detail-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.service-detail-price {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 17px;
    color: #555;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 0.8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-cta-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-section-asymmetric {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.contact-info-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-info-offset > p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-visual-overlap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    align-self: flex-start;
    margin-top: 60px;
    background-color: #f8f9fa;
}

.contact-visual-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-approach-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.approach-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-centered h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-content-centered p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.contact-cta-minimal {
    padding: 80px 30px;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-box-centered h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-box-centered p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

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

.thanks-content-centered {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content-centered h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-service-info p {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 50px 0;
    background-color: #fafbfc;
    padding: 40px;
    border-radius: 10px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.next-steps-list {
    list-style: none;
    counter-reset: steps;
}

.next-steps-list li {
    counter-increment: steps;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.next-steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #3498db;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

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

    .hero-title {
        font-size: 38px;
    }

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

    .intro-offset,
    .trust-offset,
    .about-content-offset,
    .about-approach-asymmetric,
    .contact-section-asymmetric,
    .service-detail-card {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

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

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

    .values-grid-offset {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }
}