:root {
    --steel: #738595;
    --myblue: #0c5cd5;
    --myblack: #414243;
    --mygrey:#e6e6e6;
    --radius: 5px
}

body {
    background-color: #fbfcfe;
}

.icms-navbar .nav-link {
    text-transform: capitalize;!important;
}

.icms-header__middle {
    border-bottom: 2px solid var(--mygrey);
    box-shadow: 0 4px 6px -2px var(--mygrey);
}

.logo-height{
    height: 50px;
}

h2.logo-text {
    font-size: 1rem;
    color: var(--myblack);
    font-weight: 400;
}

h1.logo-text {
    font-size: 1rem;
    color: var(--myblack);
    font-weight: 600;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.move-black a {
    background-color: var(--myblack);
    border-radius: var(--radius);
    color: #fff !important;
    transition: background-color 0.3s ease;
}

.move-black a:hover {
    background-color: var(--mygrey);
}

.banner-container {
    width: 100%;
    max-width: 1430px;
    margin: 0 auto;
    overflow: hidden;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
}

.goals-section,
.activity-section {
    background-color: #fbfcfe;
    padding: 2rem 0;
}

.goal-section-title,
.activity-header {
    text-align: left;
    margin-bottom: 3rem;
}

.goal-section-title h2,
.activity-header h2 {
    font-weight: 700;
    color: var(--myblack);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0.5rem;
}

.goal-section-title .lead,
.activity-header .lead {
    color: var(--myblack);
    opacity: 0.8;
    padding-left: 60px;
}

.goal-card,
.activity-tile {
    background: white;
    border: 1px solid var(--mygrey);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    height: 100%;
    padding: 2rem;
}

.goal-card:hover,
.activity-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.goal-card h4,
.activity-tile h4 {
    color: var(--myblack);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.goal-card p,
.activity-tile p {
    color: var(--myblack);
    line-height: 1.5;
    margin-bottom: 0;
}

.goal-icon-container {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
    background-color: var(--mygrey);
}

.goal-icon-container svg {
    width: 32px;
    height: 32px;
}

.activity-feature {
    background-color: var(--mygrey);
    border-radius: var(--radius);
    height: 100%;
    transition: all 0.2s ease;
    padding: 1.5rem;
}

.activity-feature:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.activity-feature p {
    color: var(--myblack);
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .goals-section,
    .activity-section {
        padding: 1rem 0;
    }
    
    .goal-section-title .d-flex,
    .activity-header .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .goal-section-title .me-3,
    .activity-header .me-3 {
        margin-bottom: 1rem;
    }
    
    .goal-section-title .lead,
    .activity-header .lead {
        padding-left: 0;
    }
    
    .goal-card,
    .activity-tile {
        padding: 1.5rem;
    }
    
    .goal-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .goal-icon-container svg {
        width: 24px;
        height: 24px;
    }
    
    .goal-card h4,
    .activity-tile h4 {
        font-size: 1.2rem;
        text-align: left;
        margin-bottom: 0.75rem;
    }
    
    .goal-card p,
    .activity-tile p {
        text-align: left;
        line-height: 1.4;
    }
    
    .activity-tile .d-flex.align-items-start,
    .activity-tile .d-flex.align-items-center {
        flex-direction: column;
        text-align: left;
    }
    
    .activity-tile .me-3 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .activity-feature {
        padding: 1rem !important;
    }
}

.results-section {
    background-color: #fbfcfe;
    padding: 2rem 0;
}

.results-header {
    text-align: left;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-weight: 700;
    color: var(--myblack);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0.5rem;
}

.results-header .lead {
    color: var(--myblack);
    opacity: 0.8;
    padding-left: 60px;
}

/* Статистика слева */
.results-stats {
    background: white;
    border: 1px solid var(--mygrey);
    border-radius: var(--radius);
    height: 100%;
}

.results-stats h3 {
    color: var(--myblack);
    font-weight: 600;
    font-size: 1.5rem;
}

.stat-item {
    padding: 1rem;
    border-bottom: 1px solid var(--mygrey);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--myblack);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.stat-label {
    color: var(--myblack);
    font-size: 1rem;
    opacity: 0.9;
}

/* Описание результатов справа */
.result-item {
    background: white;
    border: 1px solid var(--mygrey);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.result-item h4 {
    color: var(--myblack);
    font-weight: 600;
    font-size: 1.2rem;
}

.result-item p {
    color: var(--myblack);
    line-height: 1.5;
}

/* Блок роста внизу */
.growth-block {
    background: white;
    border: 1px solid var(--mygrey);
    border-radius: var(--radius);
}

.growth-block h4 {
    color: var(--myblack);
    font-weight: 600;
    font-size: 1.3rem;
}

.growth-block p {
    color: var(--myblack);
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .results-header .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-header .me-3 {
        margin-bottom: 1rem;
    }
    
    .results-header .lead {
        padding-left: 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .result-item,
    .growth-block {
        padding: 1.5rem;
    }
    
    .growth-block .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    
    .growth-block .col-md-9 {
        text-align: center;
    }
}