.block {
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark-green);
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
}

.block .decor-half-circle-right {
    position: absolute;
    bottom: 20%;
    right: -50px;
    width: 150px;
    height: 300px;
    border-radius: 0 150px 150px 0;
    background: rgba(10, 122, 96, 0.06);
    pointer-events: none;
    z-index: 0;
}

.block-title {
    font-size: 4rem;
    font-family: 'Days One';
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.block-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--light-green);
    margin: 20px auto 0;
    border-radius: 2px;
}

.block-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    padding: 0 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.block-left {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.block-image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.block-experts-left {
    text-align: center;
}

.experts-left-title {
    font-size: 1.2rem;
    color: var(--light-green);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.experts-left-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.expert-left-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 220px;
    position: relative;
    overflow: visible !important;
}

.expert-left-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--light-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: var(--primary-dark-green);
    cursor: pointer;
}

.expert-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none;
}

.expert-left-image:hover {
    transform: scale(1.6);
    z-index: 99999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-width: 4px;
    transition: all 0.2s ease;
}

.expert-left-item p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(232, 234, 234, 0.86);
    margin: 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.block-center {
    flex: 2.5;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 35px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-section {
    width: 100%;
}

.services-main-title {
    font-size: 1.8rem;
    color: var(--light-green);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-description {
    background: rgba(10, 122, 96, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
}

.services-description p {
    margin: 0;
}

.service-group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.category-title {
    color: var(--light-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.category-title::before {
    content: '◆';
    margin-right: 10px;
    color: var(--light-green);
    font-size: 1rem;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    font-size: 1.1rem;
    padding: 8px 0 8px 25px;
    position: relative;
    color: rgba(232, 234, 234, 0.86);
    line-height: 1.4;
}

.service-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-size: 1.3rem;
    line-height: 1;
}

.empty-message {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-style: italic;
    padding: 20px 0;
    text-align: center;
}

/* Адаптивность */
@media screen and (max-width: 1024px) {
    .block-content {
        gap: 40px;
        padding: 0 30px;
    }
    
    .block-title {
        font-size: 3.5rem;
    }
    
    .block-left {
        flex: 0.8;
    }
    
    .block-image {
        max-width: 220px;
    }
    
    .block-center {
        flex: 2.2;
        padding: 25px;
    }
    
    .services-description {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .service-item {
        font-size: 1rem;
    }
    
    .expert-left-image {
        width: 40px;
        height: 40px;
    }
    
    .expert-left-item p {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 900px) {
    .block-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .block-left,
    .block-center {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .block-left {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .block-image {
        max-width: 200px;
    }
    
    .block-experts-left {
        flex: 1;
        min-width: 200px;
    }
    
    .experts-left-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .expert-left-item {
        width: auto;
        padding: 6px 15px;
    }
    
    .block-center {
        order: 2;
    }
    
    .block-title {
        font-size: 3rem;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 18px 20px;
    }
}

@media screen and (max-width: 768px) {
    .block-content {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 0 20px;
    }
    
    .block-left {
        width: 100%;
        max-width: 100%;
        margin: 0;
        flex-direction: column;
        gap: 35px;
        order: 0;
    }
    
    .block-center {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 25px 20px;
        order: 0;
    }
    
    .block-experts-left {
        width: 100%;
    }
    
    .block-content {
        display: flex;
        flex-direction: column;
    }
    
    .block-image {
        order: 1;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    
    .block-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
    
    .block-center {
        order: 2;
    }
    
    .block-experts-left {
        order: 3;
    }
    
    .block-left {
        display: contents;
    }
    
    .expert-left-item {
        width: calc(100% - 40px);
        max-width: none;
        margin: 0 auto;
        padding: 12px 20px;
        gap: 15px;
        border-radius: 50px;
    }
    
    .expert-left-image {
        width: 100px;
        height: 100px;
    }
    
    .expert-left-item p {
        font-size: 1rem;
        text-align: left;
        flex: 1;
    }
    
    .experts-left-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .experts-left-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .block-title {
        font-size: 2.8rem;
        margin-bottom: 35px;
        padding: 0 15px;
        word-break: break-word;
        hyphens: auto;
    }
    
    .services-main-title {
        font-size: 1.6rem;
    }
    
    .services-description {
        font-size: 1rem;
        padding: 15px;
        line-height: 1.6;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .service-item {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .block-title {
        font-size: 2.2rem;
        padding: 0 10px;
        word-break: break-word;
        hyphens: auto;
    }
    
    .block-content {
        padding: 0 15px;
        gap: 30px;
    }
    
    .block-center {
        padding: 20px 15px;
    }
    
    .block-image img {
        max-height: 350px;
    }
    
    .expert-left-item {
        width: calc(100% - 30px);
        padding: 10px 18px;
    }
    
    .expert-left-image {
        width: 85px;
        height: 85px;
    }
    
    .expert-left-item p {
        font-size: 0.95rem;
    }
    
    .services-description {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .service-item {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .experts-left-title {
        font-size: 1.3rem;
    }
}