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

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

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2a3f5f;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 580px;
    position: relative;
    margin-bottom: 120px;
}

.hero-content-offset {
    width: 52%;
    padding: 80px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-title-large {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1.2px;
}

.hero-subtitle {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-diagonal {
    width: 48%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2a3f5f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a2f4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 63, 95, 0.25);
}

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 0 8% 100px 15%;
    align-items: center;
}

.intro-text-block {
    flex: 1;
}

.intro-text-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.intro-text-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-card {
    flex: 0 0 420px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.intro-visual-card img {
    width: 100%;
    height: 100%;
}

.services-irregular {
    padding: 60px 8% 100px 8%;
    background-color: #f8f9fa;
}

.section-title-left {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 70px;
    padding-left: 5%;
    letter-spacing: -0.9px;
}

.service-card-offset {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: stretch;
}

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 10%;
}

.service-card-3 {
    margin-left: 5%;
}

.service-card-4 {
    margin-left: 15%;
}

.service-card-5 {
    margin-left: 8%;
}

.service-card-6 {
    margin-left: 12%;
}

.service-image-container {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2a3f5f;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2a3f5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1a2f4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(42, 63, 95, 0.2);
}

.form-section-diagonal {
    display: flex;
    min-height: 650px;
    margin: 100px 0;
}

.form-container-offset {
    width: 55%;
    padding: 80px 10% 80px 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-container-offset h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.8px;
}

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

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

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

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

.btn-submit-form {
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-form:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.form-visual-element {
    width: 45%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
}

.trust-section-scattered {
    display: flex;
    gap: 60px;
    padding: 100px 8%;
    background-color: #f8f9fa;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.trust-1 {
    margin-top: 0;
}

.trust-2 {
    margin-top: 40px;
}

.trust-3 {
    margin-top: 20px;
}

.trust-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.trust-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #cbd5e0;
    padding: 70px 8% 30px 8%;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px 8%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2a3f5f;
    color: #ffffff;
}

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

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

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

.page-hero-offset {
    padding: 100px 8% 60px 15%;
    background-color: #f8f9fa;
}

.page-hero-offset h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

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

.about-content-asymmetric {
    padding: 80px 8% 100px 8%;
}

.about-text-block {
    margin-bottom: 80px;
}

.about-block-1 {
    padding-left: 5%;
    max-width: 800px;
}

.about-block-2 {
    padding-left: 12%;
    max-width: 750px;
}

.about-block-3 {
    padding-left: 8%;
    max-width: 780px;
}

.about-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.7px;
}

.about-text-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-offset {
    width: 65%;
    height: 400px;
    margin: 0 0 100px 20%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-image-offset img {
    width: 100%;
    height: 100%;
}

.about-values-cards {
    display: flex;
    gap: 40px;
    margin: 80px 0;
    padding: 0 5%;
}

.value-card {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section-diagonal {
    padding: 100px 8%;
    background-color: #2a3f5f;
    color: #ffffff;
    text-align: center;
    margin: 100px 0;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.cta-section-diagonal h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.8px;
}

.cta-section-diagonal p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #cbd5e0;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #2a3f5f;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.services-detailed-asymmetric {
    padding: 60px 8% 80px 8%;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 45px;
}

.service-detail-1 {
    margin-left: 0;
}

.service-detail-2 {
    margin-left: 8%;
}

.service-detail-3 {
    margin-left: 4%;
}

.service-detail-4 {
    margin-left: 12%;
}

.service-detail-5 {
    margin-left: 6%;
}

.service-detail-6 {
    margin-left: 10%;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.service-detail-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #2a3f5f;
}

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: #4a5568;
    position: relative;
}

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

.services-note-section {
    padding: 60px 8%;
    background-color: #fff8dc;
    margin: 60px 0;
}

.services-note-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-note-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-asymmetric {
    padding: 60px 8% 100px 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-block-1 {
    margin-top: 0;
}

.contact-block-2 {
    margin-top: 40px;
}

.contact-block-3 {
    margin-top: 20px;
}

.contact-block-4 {
    flex: 1 1 100%;
    margin-top: 60px;
    padding: 45px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-info-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.contact-email {
    font-weight: 600;
    color: #2a3f5f;
}

.contact-note {
    font-size: 14px;
    color: #718096;
    margin-top: 10px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-day {
    font-weight: 600;
    color: #1a1a1a;
}

.hours-time {
    color: #4a5568;
}

.contact-visual-element {
    flex: 1 1 100%;
    height: 350px;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-visual-element img {
    width: 100%;
    height: 100%;
}

.contact-cta-offset {
    padding: 80px 8%;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta-offset h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-cta-offset p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 8%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.thanks-container h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 16px;
    color: #2a3f5f;
}

.thanks-note {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
}

.btn-return-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2a3f5f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-return-home:hover {
    background-color: #1a2f4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 63, 95, 0.25);
}

.legal-page {
    padding: 60px 8% 100px 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 16px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 45px;
    margin-bottom: 18px;
}

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

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

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

.legal-page strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-diagonal {
        width: 100%;
    }

    .hero-image-diagonal {
        min-height: 400px;
        clip-path: none;
    }

    .intro-offset {
        flex-direction: column;
        padding: 0 8% 80px 8%;
    }

    .service-card-offset {
        flex-direction: column;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        margin-left: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container-offset,
    .form-visual-element {
        width: 100%;
    }

    .form-visual-element {
        min-height: 300px;
        clip-path: none;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .section-title-left {
        font-size: 32px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .about-values-cards {
        flex-direction: column;
    }
}
