:root {
    /* Fonts */

    /* Colors */
    --text-dark: #2A2D34;
    --text-light: #5B6370;
    --text-muted: #858A96;
    
    /* Backgrounds */
    --bg-card-purple: #F3F1FD;
    --bg-card-green: #EFF9F3;
    
    /* Accents / Dots */
    --color-green-dot: #88E2A0;
    --color-purple-dot: #B3AAF2;
    --color-orange-dot: #FFBE85;
}

/* Layout Utilities */
.section-padding {
    padding-top: 100px;
    padding-bottom: 80px;
}

/* Mission Section */
.mission {
    /* Removed extra top padding since header is gone */
    padding-top: 80px;
}

.mission__title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    margin-top: 0;
    line-height: 1.2;
    color: var(--text-dark);
}

.mission__text p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* People Wrapper */
.people-wrapper {
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

/* Decorative Circles (Replaced Dots) */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    background-color: transparent;
}

/* Large Green Ring */
.deco-circle--green {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 30%;
}

/* Small Purple Filled Dot */
.deco-circle--purple {
    width: 110px;
    height: 110px;
    top: 34%;
    right: 35%;
}

/* Medium Orange Ring */
.deco-circle--orange {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 55%;
}

/* Person Cards */
.person-card {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 220px;
}

.person-card--victoria {
    align-self: flex-end;
    margin-right: 2%;
    margin-top: 0;
}

.person-card--ekaterina {
    align-self: flex-start;
    margin-left: 8%;
    margin-top: -40px;
}

.person-card__image-wrap {
    width: 170px;
    height: 170px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    background-color: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.person-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-card__info {
    margin-top: 0.5rem;
}

.person-card__name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.person-card__role {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Awards Cards */
.award-card {
    border-radius: 40px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.award-card--purple {
    background-color: var(--bg-card-purple);
}

.award-card--green {
    background-color: var(--bg-card-green);
}

.award-card__logo-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.award-card__logo {
    max-width: 140px;
    max-height: 100%;
    object-fit: contain;
}

.award-card__text-wrap {
    flex-grow: 1;
}

.award-card__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .mission {
        padding-top: 60px;
        text-align: center;
    }
    
    .mission__content {
        margin-bottom: 4rem;
    }

    .people-wrapper {
        min-height: auto;
        align-items: center;
    }
    
    .person-card--victoria,
    .person-card--ekaterina {
        align-self: center;
        margin: 0 0 2rem 0;
    }
    
    .person-card--ekaterina {
        margin-top: 0;
    }
    
    .deco-circle {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .mission__title {
        font-size: 2rem;
    }
    .person-card__image-wrap {
        width: 150px;
        height: 150px;
    }
}