/* Component: Value Section */
.value-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #E5E9ED;
    margin-bottom: 40px
}

.value-section:last-child {
    border-bottom: none;
    margin-bottom: 0
}

/* Icon */
.value-section-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #FFFFFF;
    border-radius: 50%;
    padding: 10px
}

.value-section-icon img {
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
    object-fit: contain
}

/* Content */
.value-section-content {
    flex: 1
}

.value-section-title {
    color: #003262;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.value-section-description {
    color: #4A5568;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    padding-bottom: 0 !important;
}

/* Tags */
.value-section-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px
}

.value-tag {
    display: inline-block;
    background: #F7F9FB;
    color: #003262;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Additional Text */
.value-section-additional {
    color: #4A5568;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 20px 0 0 0
}

/* Values List */
.value-section-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px
}

.value-letter {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #E1E9F0;
    color: #003262;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05)
}

.value-details {
    flex: 1;
    padding-top: 5px
}

.value-label {
    color: #003262;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px
}

.value-desc {
    color: #5A6C7D;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5
}

/* Responsive */
@media (max-width: 768px) {
    .value-section {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
		margin-bottom: 0 !important;
    }

    .value-section-icon {
        width: 60px;
        height: 60px;
        padding: 12px
    }

    .value-section-title {
        font-size: 18px;
        margin-bottom: 12px
    }

    .value-section-description {
        font-size: 14px;
        margin-bottom: 15px
    }

    .value-section-tags {
        gap: 8px;
        margin-bottom: 20px
    }

    .value-tag {
        padding: 6px 16px;
        font-size: 12px
    }

    .value-section-additional {
        font-size: 14px;
        margin: 15px 0 0 0
    }

    .value-section-list {
        gap: 15px;
        margin-top: 20px
    }

    .value-item {
        gap: 15px
    }

    .value-letter {
        width: 40px;
        height: 40px;
        font-size: 20px
    }

    .value-label {
        font-size: 14px;
        margin-bottom: 4px
    }

    .value-desc {
        font-size: 13px
    }
}

