* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
}

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

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #e67e22;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: #333333;
}

.header-asymmetric {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666666;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo-offset {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    letter-spacing: -0.5px;
}

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

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

.nav-items a:hover {
    color: #e67e22;
}

.asymmetric-layout {
    overflow: hidden;
}

.hero-overlap {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-image-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 650px;
    background-color: #ffffff;
    padding: 60px;
    margin-left: 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-offset p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

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

.intro-content-left {
    flex: 1;
}

.intro-content-left h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content-left p {
    font-size: 17px;
    color: #444444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image-right {
    flex: 0 0 480px;
    background-color: #f5f5f5;
}

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

.problem-block-offset {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 80px 40px;
    margin-left: 15%;
    margin-right: 5%;
    margin-bottom: 100px;
}

.problem-content {
    max-width: 800px;
}

.problem-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
}

.problem-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.insight-grid {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.insight-header-full {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header-full h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-header-full p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-1,
.card-3,
.card-5 {
    flex-direction: row;
    margin-left: 0;
    margin-right: 10%;
}

.card-2,
.card-4,
.card-6 {
    flex-direction: row-reverse;
    margin-left: 10%;
    margin-right: 0;
}

.card-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

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

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 32px;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 30px;
    background-color: #2d2d2d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #e67e22;
    transform: translateX(5px);
}

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

.testimonials-stagger h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonial-row-1,
.testimonial-row-2 {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-row-1 {
    padding-left: 0;
}

.testimonial-row-2 {
    padding-left: 15%;
    justify-content: flex-end;
}

.testimonial-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-left: 4px solid #e67e22;
}

.testimonial-card p {
    font-size: 17px;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #888888;
    font-style: normal;
    font-weight: 600;
}

.form-section-offset {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 700px;
    margin-bottom: 100px;
}

.form-container {
    flex: 0 0 55%;
    padding: 80px 60px;
    background-color: #ffffff;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-container > p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

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

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

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.form-image-bg {
    flex: 1;
    background-color: #e8e8e8;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.form-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-left: 3px solid #e67e22;
}

.disclaimer-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-style: italic;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

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

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

.about-page {
    background-color: #ffffff;
}

.about-hero {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 120px 40px;
    text-align: center;
}

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

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #e0e0e0;
}

.story-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 0 0 500px;
    background-color: #e8e8e8;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #ffffff;
    text-align: center;
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.philosophy-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-top: 4px solid #e67e22;
    text-align: left;
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.philosophy-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

.team-section {
    padding: 100px 40px;
    background-color: #fafafa;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 0 0 calc(50% - 20px);
    max-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 14px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p:not(.role) {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

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

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.values-content p {
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-page {
    background-color: #ffffff;
}

.services-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e0e0;
}

.services-list {
    padding: 100px 40px;
    background-color: #fafafa;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

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

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

.duration {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    margin-bottom: 20px;
}

.services-info {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 60px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.services-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #e67e22;
}

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

.contact-page {
    background-color: #ffffff;
}

.contact-hero {
    background-color: #e67e22;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 18px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    color: #e67e22;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    padding: 40px;
}

.thanks-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.thanks-container p {
    font-size: 17px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-service {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #e67e22;
}

.thanks-service strong {
    color: #1a1a1a;
}

.btn-home {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

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

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.legal-container p {
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
    .hero-overlap {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-text-offset {
        margin: -50px 20px 40px;
        padding: 40px 30px;
    }

    .hero-text-offset h1 {
        font-size: 32px;
    }

    .intro-diagonal {
        flex-direction: column;
        gap: 30px;
        margin: 60px auto;
    }

    .intro-image-right {
        flex: 1;
        width: 100%;
    }

    .problem-block-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .service-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .card-image {
        flex: 0 0 250px;
    }

    .testimonial-row-1,
    .testimonial-row-2 {
        flex-direction: column;
        padding-left: 0;
    }

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

    .form-container {
        flex: 1;
    }

    .form-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

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

    .nav-floating {
        flex-direction: column;
        gap: 20px;
    }

    .nav-items {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        flex: 1;
        width: 100%;
    }

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

    .team-member {
        flex: 1;
        max-width: 100%;
    }

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

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