.strat-section .sec-label {
    margin-bottom: 25px;
}

.strat-section .sec-title {
    margin-bottom: 25px;
}


.strat-section .strat-header {
    margin-bottom: 50px;
}

.strat-section .strat-label {
    background: #e0e0e0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    color: #555;
    letter-spacing: 0.5px;
}

.strat-section .strat-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
}

.strat-section .strat-desc {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.strat-section .strat-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 180px;
}

.strat-section .strat-card {
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    padding: 25px;
    padding-bottom: 23px;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strat-section .strat-icon {
    margin-bottom: 90px;
}

.strat-section .strat-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
    display: block;
}

.strat-section .strat-content {
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-width: 198px;
    width: 100%;
}

.strat-section .strat-card-title {
    margin-bottom: 12px;
}

.strat-section .strat-card-text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .strat-section .strat-card {
        flex: 1 1 calc(33.333% - 16px);
        min-width: 250px;
    }
}

@media (max-width: 991px) {
    .strat-section .strat-card {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .strat-section .strat-header {
        text-align: left;
    }

    .strat-section .strat-title {
        font-size: 32px;
    }

    .strat-section .strat-grid {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 83px;
    }

    .strat-section .strat-card {
        flex: 1 1 100%;
        min-height: auto;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 20px;
        border-radius: 8px;
        border: 0.55px solid #DCDCDC;
    }

    .strat-section .strat-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .strat-section .strat-content {
        max-width: 100%;
        margin-top: 0;
    }

    .strat-section .sec-label {
        margin-bottom: 14px;
    }

    .strat-section .strat-icon img {
        width: 34px;
        height: auto;
    }

    .strat-section .strat-card-title {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 6px;
    }

    .strat-section .strat-card-text {
        font-size: 14px;
        line-height: 16px;
    }
}