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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    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: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 80px 60px;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    max-width: 540px;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #495057;
}

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

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e9ecef;
}

.insight-block {
    padding: 90px 60px;
    background-color: #ffffff;
}

.insight-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 0 0 120px;
}

.insight-stat {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.stat-number {
    font-size: 68px;
    font-weight: 900;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.4;
}

.insight-text {
    flex: 1;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
}

.story-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 24px;
    color: #495057;
}

.story-narrow img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-preview {
    padding: 110px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    padding-left: 80px;
    color: #1a1a1a;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    align-items: flex-start;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-large {
    flex: 0 0 calc(60% - 15px);
}

.card-medium {
    flex: 0 0 calc(48% - 15px);
}

.card-small {
    flex: 0 0 calc(35% - 15px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 24px 20px 24px;
    flex-grow: 1;
}

.price {
    font-size: 26px;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 24px 16px 24px;
}

.btn-select {
    margin: 0 24px 24px 24px;
    padding: 13px 26px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1a252f;
}

.trust-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.trust-content-asymmetric {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin-left: 60px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    background-color: #e9ecef;
}

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

.form-container-offset {
    max-width: 680px;
    margin-left: 140px;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.selected-service-info {
    background-color: #e7f3ff;
    border-left: 4px solid #2c3e50;
    padding: 18px 22px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.selected-service-info p {
    margin: 5px 0;
    font-size: 15px;
    color: #1a1a1a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    font-size: 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 15px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a252f;
}

.disclaimer-section {
    padding: 70px 60px;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 35px 40px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 70px 60px 30px 60px;
}

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

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

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

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

.footer-block ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 25px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 1000;
    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;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 11px 26px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

.cookie-reject:hover {
    background-color: #dee2e6;
}

.about-hero {
    padding: 100px 60px 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #6c757d;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-story {
    padding: 90px 60px;
    background-color: #ffffff;
}

.story-layout-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
}

.story-image-left {
    flex: 0 0 45%;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.values-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.values-grid-offset {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 0 0 80px;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.team-approach {
    padding: 90px 60px;
    background-color: #ffffff;
}

.approach-content {
    max-width: 950px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 40px;
    margin-bottom: 26px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #495057;
}

.approach-image {
    margin: 50px 0;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #e9ecef;
}

.cta-section-about {
    padding: 80px 60px;
    background-color: #2c3e50;
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e9ecef;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f8f9fa;
}

.services-header {
    padding: 90px 60px 50px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.services-intro {
    font-size: 19px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-item-offset {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-left: 40px;
}

.service-item-offset.reverse {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 40px;
}

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    background-color: #e9ecef;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #495057;
}

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

.service-features li {
    font-size: 15px;
    color: #495057;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

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

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

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

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

.cta-content-services h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-content-services p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6c757d;
}

.cta-btn-services {
    display: inline-block;
    padding: 15px 38px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-btn-services:hover {
    background-color: #1a252f;
}

.contact-header {
    padding: 90px 60px 50px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main {
    padding: 80px 60px 120px 60px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-offset {
    padding-left: 60px;
}

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.info-note {
    margin-top: 50px;
    padding: 22px 26px;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.info-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.thanks-container {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #495057;
}

.service-confirmation {
    background-color: #e7f3ff;
    border-left: 4px solid #2c3e50;
    padding: 18px 22px;
    margin-bottom: 30px;
    border-radius: 4px;
    display: none;
}

.service-confirmation p {
    font-size: 16px;
    color: #1a1a1a;
}

.thanks-note {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-back,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-back {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-back:hover {
    background-color: #1a252f;
}

.btn-secondary {
    background-color: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background-color: #dee2e6;
}

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

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

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

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

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

.legal-content ul {
    margin: 18px 0 18px 30px;
}

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

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a252f;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-content-left {
        padding-left: 0;
        max-width: 100%;
    }

    .hero-image-right {
        margin-top: 20px;
    }

    .services-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 0 0 100%;
    }

    .trust-content-asymmetric,
    .story-layout-asymmetric,
    .service-item-offset {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
    }

    .service-item-offset.reverse {
        flex-direction: column;
    }

    .insight-wrapper {
        flex-direction: column;
        margin-left: 0;
    }

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

    .form-container-offset,
    .contact-info-offset {
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .section-title-offset {
        padding-left: 0;
    }

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

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