.about-hero {
    background-color: var(--diva-accent);
    padding: 80px 0;
    position: relative;
}

.about-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23f9f7f4' fill-opacity='1' d='M0,32L80,32C160,32,320,32,480,21.3C640,11,800,0,960,0C1120,0,1280,11,1360,16L1440,21L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
}

.about-section {
    padding: 80px 0;
}

.about-section h2 {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.about-section h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--diva-primary);
    bottom: -10px;
    left: 0;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.mission-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--diva-shadow);
    padding: 40px;
    height: 100%;
    transition: var(--diva-transition);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--diva-accent);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--diva-primary);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-img-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--diva-transition);
}

.team-member:hover .team-img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.team-member:hover .team-overlay {
    height: 100%;
}

.team-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    margin: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--diva-primary);
    transition: var(--diva-transition);
}

.team-social a:hover {
    background: var(--diva-primary);
    color: white;
}

.team-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
}

.team-position {
    color: var(--diva-primary);
    font-weight: 500;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--diva-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--diva-light);
    border: 4px solid var(--diva-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: var(--diva-shadow);
    transition: var(--diva-transition);
}

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

.timeline-year {
    position: absolute;
    top: -25px;
    right: 15px;
    background-color: var(--diva-primary);
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

.values-card {
    height: 100%;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--diva-shadow);
    transition: var(--diva-transition);
    background-color: white;
    text-align: center;
}

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

.values-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--diva-primary);
}

.testimonial-card {
    border-radius: 10px;
    box-shadow: var(--diva-shadow);
    padding: 30px;
    margin-bottom: 30px;
    background-color: white;
    position: relative;
    transition: var(--diva-transition);
}

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

.testimonial-card:after {
    content: '\201D';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 80px;
    color: var(--diva-accent);
    font-family: serif;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'Cormorant Garamond', serif;
}

.author-title {
    color: var(--diva-primary);
    font-size: 0.9rem;
}

/* Стили для раздела клиентов */
.clients-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--diva-shadow);
    padding: 40px;
    margin-bottom: 20px;
}

.client-item {
    margin-bottom: 30px;
    border-left: 3px solid var(--diva-primary);
    padding-left: 20px;
    position: relative;
}

.client-item:last-child {
    margin-bottom: 0;
}

.client-name {
    font-weight: 600;
    color: var(--diva-primary);
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.client-brands {
    margin-bottom: 0;
    color: #555;
}