.about-page {
    font-size: 1.1rem;
    line-height: 1.8;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    max-width: 100%;
    height: auto;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #2A3547 0%, #8B0000 100%);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.competencies-content ul,
.bio-content ul {
    padding-left: 1.5rem;
}

.competencies-content li,
.bio-content li {
    margin-bottom: 0.5rem;
}

.modal-content {
    border-radius: 0.75rem;
    overflow: hidden;
}

.text-break {
    white-space: normal !important;
    overflow-wrap: break-word;
}

.mission-values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
}

.mission-card {
    transition: transform 0.3s ease;
    border-left: 4px solid #dc3545 !important;
}

.values-card {
    transition: transform 0.3s ease;
    border-left: 4px solid #2A3547 !important;
}

.mission-card:hover, .values-card:hover {
    transform: translateY(-5px);
}

.mission-content ul, .values-list ul {
    padding-left: 1.5rem;
}

.mission-content li, .values-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

.values-list li:before {
    content: "•";
    color: #dc3545;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
}


.about-company-section {
    position: relative;
    background-color: #ffffff;
}


.richtext-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.richtext-content p {
    margin-bottom: 1.2rem;
}



@media (min-width: 992px) {
    .about-content {
        border-right: 1px solid #eee;
        padding-right: 3rem;
    }
}

/* Стили для блока услуг */
.services-section {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-description {
    color: #4a5568;
}

/* Общие стили */
.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, #2A3547);
    border-radius: 3px;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

